/* DUPLICATOR-LITE (PHP BUILD MODE) MYSQL SCRIPT CREATED ON : 2018-03-27 01:07:01 */

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wpj1_UPCP_Catalogue_Items` (
  `Catalogue_Item_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Catalogue_ID` mediumint(9) DEFAULT '0',
  `Item_ID` mediumint(9) DEFAULT '0',
  `Category_ID` mediumint(9) DEFAULT '0',
  `SubCategory_ID` mediumint(9) DEFAULT '0',
  `Position` mediumint(9) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`Catalogue_Item_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Catalogues` (
  `Catalogue_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Catalogue_Name` text NOT NULL,
  `Catalogue_Description` text NOT NULL,
  `Catalogue_Layout_Format` text NOT NULL,
  `Catalogue_Custom_CSS` text NOT NULL,
  `Catalogue_Item_Count` mediumint(9) NOT NULL DEFAULT '0',
  `Catalogue_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`Catalogue_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Categories` (
  `Category_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Category_Name` text NOT NULL,
  `Category_Description` text NOT NULL,
  `Category_Image` text NOT NULL,
  `Category_Item_Count` mediumint(9) DEFAULT '0',
  `Category_Sidebar_Order` mediumint(9) DEFAULT '9999',
  `Category_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Category_WC_ID` mediumint(9) DEFAULT '0',
  UNIQUE KEY `id` (`Category_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Custom_Fields` (
  `Field_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Field_Name` text NOT NULL,
  `Field_Slug` text NOT NULL,
  `Field_Type` text NOT NULL,
  `Field_Description` text NOT NULL,
  `Field_Values` text NOT NULL,
  `Field_Displays` text NOT NULL,
  `Field_Searchable` text NOT NULL,
  `Field_Sidebar_Order` mediumint(9) DEFAULT '9999',
  `Field_Display_Tabbed` text NOT NULL,
  `Field_Control_Type` text NOT NULL,
  `Field_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Field_WC_ID` mediumint(9) DEFAULT '0',
  UNIQUE KEY `id` (`Field_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Fields_Meta` (
  `Meta_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Field_ID` mediumint(9) DEFAULT '0',
  `Item_ID` mediumint(9) DEFAULT '0',
  `Meta_Value` text NOT NULL,
  UNIQUE KEY `id` (`Meta_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Item_Images` (
  `Item_Image_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Item_ID` mediumint(9) NOT NULL DEFAULT '0',
  `Item_Image_URL` text,
  `Item_Image_Description` text,
  `Item_Image_Order` mediumint(9) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`Item_Image_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Items` (
  `Item_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Item_Name` text NOT NULL,
  `Item_Slug` text NOT NULL,
  `Item_Description` text,
  `Item_Price` text NOT NULL,
  `Item_Sale_Price` text NOT NULL,
  `Item_Sale_Mode` text NOT NULL,
  `Item_Link` text,
  `Item_Photo_URL` text,
  `Category_ID` mediumint(9) DEFAULT '0',
  `Category_Name` text,
  `Global_Item_ID` mediumint(9) DEFAULT '0',
  `Item_Special_Attr` text,
  `SubCategory_ID` mediumint(9) DEFAULT '0',
  `SubCategory_Name` text,
  `Item_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Item_Views` mediumint(9) DEFAULT '0',
  `Item_Display_Status` text,
  `Item_Related_Products` text,
  `Item_Next_Previous` text,
  `Item_SEO_Description` text,
  `Item_Category_Product_Order` mediumint(9) DEFAULT '9999',
  `Item_WC_ID` mediumint(9) DEFAULT '0',
  UNIQUE KEY `id` (`Item_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_SubCategories` (
  `SubCategory_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Category_ID` mediumint(9) NOT NULL DEFAULT '0',
  `Category_Name` text NOT NULL,
  `SubCategory_Name` text NOT NULL,
  `SubCategory_Description` text NOT NULL,
  `SubCategory_Image` text NOT NULL,
  `SubCategory_Item_Count` mediumint(9) NOT NULL DEFAULT '0',
  `SubCategory_Sidebar_Order` mediumint(9) DEFAULT '9999',
  `SubCategory_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `SubCategory_WC_ID` mediumint(9) DEFAULT '0',
  UNIQUE KEY `id` (`SubCategory_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Tag_Groups` (
  `Tag_Group_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Tag_Group_Name` text NOT NULL,
  `Tag_Group_Description` text NOT NULL,
  `Display_Tag_Group` text NOT NULL,
  `Tag_Group_Order` mediumint(9) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`Tag_Group_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Tagged_Items` (
  `Tagged_Item_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Tag_ID` mediumint(9) NOT NULL DEFAULT '0',
  `Item_ID` mediumint(9) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`Tagged_Item_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Tags` (
  `Tag_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Tag_Name` text NOT NULL,
  `Tag_Description` text NOT NULL,
  `Tag_Item_Count` text NOT NULL,
  `Tag_Group_ID` mediumint(9) NOT NULL DEFAULT '0',
  `Tag_Sidebar_Order` mediumint(9) DEFAULT '9999',
  `Tag_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Tag_WC_ID` mediumint(9) DEFAULT '0',
  UNIQUE KEY `id` (`Tag_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_UPCP_Videos` (
  `Item_Video_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Item_ID` mediumint(9) NOT NULL DEFAULT '0',
  `Item_Video_URL` text,
  `Item_Video_Type` text,
  `Item_Video_Order` mediumint(9) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`Item_Video_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_awebooking_availability` (
  `room_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `year` smallint(5) unsigned NOT NULL DEFAULT '0',
  `month` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `d1` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d2` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d3` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d4` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d5` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d6` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d7` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d8` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d9` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d10` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d11` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d12` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d13` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d14` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d15` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d16` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d17` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d18` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d19` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d20` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d21` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d22` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d23` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d24` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d25` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d26` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d27` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d28` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d29` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d30` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d31` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`room_id`,`year`,`month`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_awebooking_booking` (
  `room_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `year` smallint(5) unsigned NOT NULL DEFAULT '0',
  `month` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `d1` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d2` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d3` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d4` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d5` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d6` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d7` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d8` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d9` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d10` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d11` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d12` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d13` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d14` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d15` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d16` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d17` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d18` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d19` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d20` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d21` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d22` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d23` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d24` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d25` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d26` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d27` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d28` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d29` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d30` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d31` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`room_id`,`year`,`month`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_awebooking_booking_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `booking_item_id` (`booking_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_awebooking_booking_items` (
  `booking_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `booking_item_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `booking_item_parent` bigint(20) unsigned NOT NULL,
  `booking_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`booking_item_id`),
  KEY `booking_id` (`booking_id`),
  KEY `booking_item_parent` (`booking_item_parent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_awebooking_pricing` (
  `rate_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `year` smallint(5) unsigned NOT NULL DEFAULT '0',
  `month` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `d1` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d2` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d3` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d4` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d5` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d6` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d7` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d8` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d9` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d10` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d11` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d12` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d13` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d14` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d15` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d16` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d17` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d18` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d19` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d20` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d21` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d22` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d23` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d24` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d25` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d26` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d27` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d28` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d29` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d30` bigint(20) unsigned NOT NULL DEFAULT '0',
  `d31` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`rate_id`,`year`,`month`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_awebooking_rooms` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `room_type` bigint(20) unsigned NOT NULL,
  `order` smallint(5) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `room_type` (`room_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

CREATE TABLE `wpj1_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `hash` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_fo_elements` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `font_id` mediumint(9) NOT NULL,
  `font_weight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `important` int(1) DEFAULT '0',
  `custom_elements` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_fo_usable_fonts` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `url` text COLLATE utf8mb4_unicode_ci,
  `custom` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotel_booking_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hotel_booking_order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  UNIQUE KEY `meta_id` (`meta_id`),
  KEY `hotel_booking_order_item_id` (`hotel_booking_order_item_id`),
  KEY `meta_key` (`meta_key`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotel_booking_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_parent` bigint(20) DEFAULT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  UNIQUE KEY `order_item_id` (`order_item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotel_booking_plans` (
  `plan_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `room_id` bigint(20) unsigned NOT NULL,
  `start_time` timestamp NULL DEFAULT NULL,
  `end_time` timestamp NULL DEFAULT NULL,
  `pricing` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`plan_id`),
  UNIQUE KEY `plan_id` (`plan_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotelier_bookings` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `reservation_id` bigint(20) NOT NULL,
  `checkin` date NOT NULL,
  `checkout` date NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `reservation_id` (`reservation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotelier_reservation_itemmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `reservation_item_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `reservation_item_id` (`reservation_item_id`),
  KEY `meta_key` (`meta_key`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotelier_reservation_items` (
  `reservation_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `reservation_item_name` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `reservation_id` bigint(20) NOT NULL,
  PRIMARY KEY (`reservation_item_id`),
  KEY `reservation_id` (`reservation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotelier_rooms_bookings` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `reservation_id` bigint(20) NOT NULL,
  `room_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `reservation_id` (`reservation_id`),
  KEY `room_id` (`room_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_hotelier_sessions` (
  `session_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

CREATE TABLE `wpj1_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=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

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

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

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

CREATE TABLE `wpj1_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_availability` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `post_id` int(11) DEFAULT NULL,
  `start` int(11) DEFAULT NULL,
  `end` int(11) DEFAULT NULL,
  `price` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `calendar_minimum` int(11) DEFAULT NULL,
  `calendar_maximum` int(11) DEFAULT NULL,
  `calendar_price` float DEFAULT NULL,
  `adult_minimum` int(11) DEFAULT NULL,
  `adult_price` float DEFAULT NULL,
  `child_minimum` int(11) DEFAULT NULL,
  `child_price` float DEFAULT NULL,
  `infant_minimum` int(11) DEFAULT NULL,
  `infant_price` float DEFAULT NULL,
  `weekly` float DEFAULT NULL,
  `monthly` float DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `base_id` int(11) DEFAULT NULL,
  `can_check_in` int(11) DEFAULT NULL,
  `can_check_out` int(11) DEFAULT NULL,
  `group_day` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_favorite` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `post_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_order` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) DEFAULT NULL,
  `post_id` int(11) DEFAULT NULL,
  `service_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price` float DEFAULT NULL,
  `discount` int(11) DEFAULT NULL,
  `extra_fees` text COLLATE utf8mb4_unicode_ci,
  `tax` text COLLATE utf8mb4_unicode_ci,
  `tax_total` float DEFAULT NULL,
  `currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `raw_data` text COLLATE utf8mb4_unicode_ci,
  `check_in_timestamp` int(11) DEFAULT NULL,
  `check_out_timestamp` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `author_id` int(11) DEFAULT NULL,
  `deposit` text COLLATE utf8mb4_unicode_ci,
  `deposit_price` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `adult_number` int(11) DEFAULT NULL,
  `children_number` int(11) DEFAULT NULL,
  `infant_number` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_order_hotel_room` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) DEFAULT NULL,
  `hotel_id` int(11) DEFAULT NULL,
  `room_id` int(11) DEFAULT NULL,
  `price` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price_total` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `number` int(11) DEFAULT NULL,
  `extra_fees` text COLLATE utf8mb4_unicode_ci,
  `check_in_timestamp` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `check_out_timestamp` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `raw_data` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_payment` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) DEFAULT NULL,
  `created_on` int(11) DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_review_helpful` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `review_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `ip_address` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpbooking_service` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `post_id` int(11) DEFAULT NULL,
  `enable_property` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price` float DEFAULT NULL,
  `number` int(11) DEFAULT NULL,
  `children_price` float DEFAULT NULL,
  `infant_price` float DEFAULT NULL,
  `map_lat` float DEFAULT NULL,
  `map_long` float DEFAULT NULL,
  `service_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `property_available_for` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `max_guests` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `pricing_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wpj1_wpgmza` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `address` varchar(700) NOT NULL,
  `description` mediumtext NOT NULL,
  `pic` varchar(700) NOT NULL,
  `link` varchar(700) NOT NULL,
  `icon` varchar(700) NOT NULL,
  `lat` varchar(100) NOT NULL,
  `lng` varchar(100) NOT NULL,
  `anim` varchar(3) NOT NULL,
  `title` varchar(700) NOT NULL,
  `infoopen` varchar(3) NOT NULL,
  `category` varchar(500) NOT NULL,
  `approved` tinyint(1) DEFAULT '1',
  `retina` tinyint(1) DEFAULT '0',
  `type` tinyint(1) DEFAULT '0',
  `did` varchar(500) NOT NULL,
  `other_data` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_wpgmza_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `active` tinyint(1) NOT NULL,
  `category_name` varchar(50) NOT NULL,
  `category_icon` varchar(700) NOT NULL,
  `retina` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_wpgmza_category_maps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cat_id` int(11) NOT NULL,
  `map_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_wpgmza_maps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_title` varchar(55) NOT NULL,
  `map_width` varchar(6) NOT NULL,
  `map_height` varchar(6) NOT NULL,
  `map_start_lat` varchar(700) NOT NULL,
  `map_start_lng` varchar(700) NOT NULL,
  `map_start_location` varchar(700) NOT NULL,
  `map_start_zoom` int(10) NOT NULL,
  `default_marker` varchar(700) NOT NULL,
  `type` int(10) NOT NULL,
  `alignment` int(10) NOT NULL,
  `directions_enabled` int(10) NOT NULL,
  `styling_enabled` int(10) NOT NULL,
  `styling_json` mediumtext NOT NULL,
  `active` int(1) NOT NULL,
  `kml` varchar(700) NOT NULL,
  `bicycle` int(10) NOT NULL,
  `traffic` int(10) NOT NULL,
  `dbox` int(10) NOT NULL,
  `dbox_width` varchar(10) NOT NULL,
  `listmarkers` int(10) NOT NULL,
  `listmarkers_advanced` int(10) NOT NULL,
  `filterbycat` tinyint(1) NOT NULL,
  `ugm_enabled` int(10) NOT NULL,
  `ugm_category_enabled` tinyint(1) NOT NULL,
  `fusion` varchar(100) NOT NULL,
  `map_width_type` varchar(3) NOT NULL,
  `map_height_type` varchar(3) NOT NULL,
  `mass_marker_support` int(10) NOT NULL,
  `ugm_access` int(10) NOT NULL,
  `order_markers_by` int(10) NOT NULL,
  `order_markers_choice` int(10) NOT NULL,
  `show_user_location` int(3) NOT NULL,
  `default_to` varchar(700) NOT NULL,
  `other_settings` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_wpgmza_polygon` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `polydata` longtext NOT NULL,
  `innerpolydata` longtext NOT NULL,
  `linecolor` varchar(7) NOT NULL,
  `lineopacity` varchar(7) NOT NULL,
  `fillcolor` varchar(7) NOT NULL,
  `opacity` varchar(3) NOT NULL,
  `title` varchar(250) NOT NULL,
  `link` varchar(700) NOT NULL,
  `ohfillcolor` varchar(7) NOT NULL,
  `ohlinecolor` varchar(7) NOT NULL,
  `ohopacity` varchar(3) NOT NULL,
  `polyname` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wpj1_wpgmza_polylines` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `polydata` longtext NOT NULL,
  `linecolor` varchar(7) NOT NULL,
  `linethickness` varchar(3) NOT NULL,
  `opacity` varchar(3) NOT NULL,
  `polyname` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;


/* INSERT TABLE DATA: wpj1_UPCP_Catalogues */
INSERT INTO `wpj1_UPCP_Catalogues` VALUES("1", "Sample Catalogue", "This is where your description of this catalogue would go.", "", "", "0", "0000-00-00 00:00:00");

/* INSERT TABLE DATA: wpj1_UPCP_Categories */
INSERT INTO `wpj1_UPCP_Categories` VALUES("1", "Sample Category", "This is where your description of this category would go.", "", "1", "9999", "0000-00-00 00:00:00", "26");
INSERT INTO `wpj1_UPCP_Categories` VALUES("2", "Uncategorized", "", "", "0", "9999", "0000-00-00 00:00:00", "23");
INSERT INTO `wpj1_UPCP_Categories` VALUES("3", "Villa", "", "", "1", "9999", "0000-00-00 00:00:00", "24");

/* INSERT TABLE DATA: wpj1_UPCP_Item_Images */
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("1", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg", "", "0");
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("2", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg", "", "0");
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("3", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg", "", "0");
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("4", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg", "", "0");
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("5", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg", "", "0");
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("6", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg", "", "0");
INSERT INTO `wpj1_UPCP_Item_Images` VALUES("7", "2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-1.jpg", "", "0");

/* INSERT TABLE DATA: wpj1_UPCP_Items */
INSERT INTO `wpj1_UPCP_Items` VALUES("1", "Sample Item", "", "<p>This is where your description of this product would go.</p>\n", "9.99", "", "No", "", "http://panbilresidence.com/wp-content/plugins/ultimate-product-catalogue/images/sample_image.jpg", "1", "Sample Category", "0", "", "0", "", "0000-00-00 00:00:00", "0", "Show", "", "", "", "9999", "206063");
INSERT INTO `wpj1_UPCP_Items` VALUES("2", "Matoa", "matoa", "<p>Product description content</p>\n", "900000", "", "No", "", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg", "3", "Villa", "0", "", "0", "", "2018-03-03 00:38:11", "0", "Show", "", "", "", "9999", "206060");

/* INSERT TABLE DATA: wpj1_UPCP_Tagged_Items */
INSERT INTO `wpj1_UPCP_Tagged_Items` VALUES("5", "1", "2");

/* INSERT TABLE DATA: wpj1_UPCP_Tags */
INSERT INTO `wpj1_UPCP_Tags` VALUES("1", "villa", "", "1", "0", "9999", "0000-00-00 00:00:00", "25");

/* INSERT TABLE DATA: wpj1_awebooking_rooms */
INSERT INTO `wpj1_awebooking_rooms` VALUES("1", "test room - 1", "206530", "0");

/* INSERT TABLE DATA: wpj1_comments */
INSERT INTO `wpj1_comments` VALUES("1", "1", "A WordPress Commenter", "wapuu@wordpress.example", "https://wordpress.org/", "", "2018-01-23 03:38:12", "2018-01-23 03:38:12", "Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.", "0", "1", "", "", "0", "0");

/* INSERT TABLE DATA: wpj1_duplicator_packages */
INSERT INTO `wpj1_duplicator_packages` VALUES("1", "20180327_panbilresidence", "0a2cdeca6e4808f84526180327010622", "20", "2018-03-27 01:07:01", "admin", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-03-27 01:06:22\";s:7:\"Version\";s:6:\"1.2.34\";s:9:\"VersionWP\";s:5:\"4.9.4\";s:9:\"VersionDB\";s:7:\"10.1.31\";s:10:\"VersionPHP\";s:6:\"7.0.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:1;s:4:\"Name\";s:24:\"20180327_panbilresidence\";s:4:\"Hash\";s:32:\"0a2cdeca6e4808f84526180327010622\";s:8:\"NameHash\";s:57:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/u4606840/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:40:\"http://panbilresidence.com/wp-snapshots/\";s:8:\"ScanFile\";s:67:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:5:\"admin\";s:7:\"Archive\";O:11:\"DUP_Archive\":19:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";s:69:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/u4606840/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-03-27 01:06:22\";s:7:\"Version\";s:6:\"1.2.34\";s:9:\"VersionWP\";s:5:\"4.9.4\";s:9:\"VersionDB\";s:7:\"10.1.31\";s:10:\"VersionPHP\";s:6:\"7.0.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:24:\"20180327_panbilresidence\";s:4:\"Hash\";s:32:\"0a2cdeca6e4808f84526180327010622\";s:8:\"NameHash\";s:57:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/u4606840/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:40:\"http://panbilresidence.com/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:71:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:10:\"\0*\0Package\";r:58;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:70:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:14:\"MariaDB Server\";s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:35:\"/home/u4606840/public_html/wp-admin\";i:1;s:45:\"/home/u4606840/public_html/wp-content/uploads\";i:2;s:47:\"/home/u4606840/public_html/wp-content/languages\";i:3;s:45:\"/home/u4606840/public_html/wp-content/plugins\";i:4;s:44:\"/home/u4606840/public_html/wp-content/themes\";i:5;s:38:\"/home/u4606840/public_html/wp-includes\";}}s:9:\"Installer\";r:80;s:8:\"Database\";r:88;}");

/* INSERT TABLE DATA: wpj1_fo_usable_fonts */
INSERT INTO `wpj1_fo_usable_fonts` VALUES("1", "Century Gothic Stand", "regular;/wp-content/uploads/font-organizer/911Fonts.com_CenturyGothicRegular__-_911fonts.com_fonts_mhpY.ttf", "1");
INSERT INTO `wpj1_fo_usable_fonts` VALUES("2", "Century Gothic", "regular;/wp-content/uploads/font-organizer/911Fonts.com_CenturyGothicRegular__-_911fonts.com_fonts_mhpY-1.ttf", "1");

/* INSERT TABLE DATA: wpj1_hotelier_sessions */
INSERT INTO `wpj1_hotelier_sessions` VALUES("1", "1", "a:5:{s:7:\"checkin\";s:10:\"2018-03-17\";s:8:\"checkout\";s:10:\"2018-03-18\";s:19:\"cart_contents_total\";i:0;s:16:\"required_deposit\";i:0;s:5:\"total\";i:0;}", "1521478240");

/* INSERT TABLE DATA: wpj1_options */
INSERT INTO `wpj1_options` VALUES("1", "siteurl", "http://panbilresidence.com", "yes");
INSERT INTO `wpj1_options` VALUES("2", "home", "http://panbilresidence.com", "yes");
INSERT INTO `wpj1_options` VALUES("3", "blogname", "Panbil Residence", "yes");
INSERT INTO `wpj1_options` VALUES("4", "blogdescription", "Wonderfully Living", "yes");
INSERT INTO `wpj1_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wpj1_options` VALUES("6", "admin_email", "admin@panbilresidence.com", "yes");
INSERT INTO `wpj1_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wpj1_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wpj1_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wpj1_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wpj1_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wpj1_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `wpj1_options` VALUES("13", "rss_use_excerpt", "0", "yes");
INSERT INTO `wpj1_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wpj1_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wpj1_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `wpj1_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `wpj1_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `wpj1_options` VALUES("19", "default_comment_status", "open", "yes");
INSERT INTO `wpj1_options` VALUES("20", "default_ping_status", "open", "yes");
INSERT INTO `wpj1_options` VALUES("21", "default_pingback_flag", "1", "yes");
INSERT INTO `wpj1_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `wpj1_options` VALUES("23", "date_format", "F j, Y", "yes");
INSERT INTO `wpj1_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wpj1_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wpj1_options` VALUES("26", "comment_moderation", "0", "yes");
INSERT INTO `wpj1_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wpj1_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wpj1_options` VALUES("29", "rewrite_rules", "a:125:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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=43&cpage=$matches[1]\";s:26:\"pay-reservation(/(.*))?/?$\";s:38:\"index.php?&pay-reservation=$matches[2]\";s:31:\"reservation-received(/(.*))?/?$\";s:43:\"index.php?&reservation-received=$matches[2]\";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:34:\"(.?.+?)/pay-reservation(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&pay-reservation=$matches[3]\";s:39:\"(.?.+?)/reservation-received(/(.*))?/?$\";s:63:\"index.php?pagename=$matches[1]&reservation-received=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}", "yes");
INSERT INTO `wpj1_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `wpj1_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `wpj1_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `wpj1_options` VALUES("33", "active_plugins", "a:6:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:25:\"duplicator/duplicator.php\";i:2;s:29:\"gmap-embed/srm_gmap_embed.php\";i:3;s:21:\"megamenu/megamenu.php\";i:4;s:46:\"under-construction-page/under-construction.php\";i:5;s:21:\"wp-reset/wp-reset.php\";}", "yes");
INSERT INTO `wpj1_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wpj1_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wpj1_options` VALUES("36", "comment_max_links", "2", "yes");
INSERT INTO `wpj1_options` VALUES("37", "gmt_offset", "0", "yes");
INSERT INTO `wpj1_options` VALUES("38", "default_email_category", "1", "yes");
INSERT INTO `wpj1_options` VALUES("39", "recently_edited", "a:5:{i:0;s:70:\"/home/u4606840/public_html/wp-content/themes/panbilresidence/style.css\";i:2;s:71:\"/home/u4606840/public_html/wp-content/themes/panbilresidence/header.php\";i:3;s:91:\"/home/u4606840/public_html/wp-content/themes/panbilresidence/includes/builder/functions.php\";i:4;s:91:\"/home/u4606840/public_html/wp-content/themes/panbilresidence/includes/builder/framework.php\";i:5;s:74:\"/home/u4606840/public_html/wp-content/themes/panbilresidence/functions.php\";}", "no");
INSERT INTO `wpj1_options` VALUES("40", "template", "panbilresidence", "yes");
INSERT INTO `wpj1_options` VALUES("41", "stylesheet", "panbilresidence", "yes");
INSERT INTO `wpj1_options` VALUES("42", "comment_whitelist", "1", "yes");
INSERT INTO `wpj1_options` VALUES("43", "blacklist_keys", "", "no");
INSERT INTO `wpj1_options` VALUES("44", "comment_registration", "0", "yes");
INSERT INTO `wpj1_options` VALUES("45", "html_type", "text/html", "yes");
INSERT INTO `wpj1_options` VALUES("46", "use_trackback", "0", "yes");
INSERT INTO `wpj1_options` VALUES("47", "default_role", "subscriber", "yes");
INSERT INTO `wpj1_options` VALUES("48", "db_version", "38590", "yes");
INSERT INTO `wpj1_options` VALUES("49", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wpj1_options` VALUES("50", "upload_path", "", "yes");
INSERT INTO `wpj1_options` VALUES("51", "blog_public", "1", "yes");
INSERT INTO `wpj1_options` VALUES("52", "default_link_category", "2", "yes");
INSERT INTO `wpj1_options` VALUES("53", "show_on_front", "page", "yes");
INSERT INTO `wpj1_options` VALUES("54", "tag_base", "", "yes");
INSERT INTO `wpj1_options` VALUES("55", "show_avatars", "1", "yes");
INSERT INTO `wpj1_options` VALUES("56", "avatar_rating", "G", "yes");
INSERT INTO `wpj1_options` VALUES("57", "upload_url_path", "", "yes");
INSERT INTO `wpj1_options` VALUES("58", "thumbnail_size_w", "150", "yes");
INSERT INTO `wpj1_options` VALUES("59", "thumbnail_size_h", "150", "yes");
INSERT INTO `wpj1_options` VALUES("60", "thumbnail_crop", "1", "yes");
INSERT INTO `wpj1_options` VALUES("61", "medium_size_w", "300", "yes");
INSERT INTO `wpj1_options` VALUES("62", "medium_size_h", "300", "yes");
INSERT INTO `wpj1_options` VALUES("63", "avatar_default", "mystery", "yes");
INSERT INTO `wpj1_options` VALUES("64", "large_size_w", "1024", "yes");
INSERT INTO `wpj1_options` VALUES("65", "large_size_h", "1024", "yes");
INSERT INTO `wpj1_options` VALUES("66", "image_default_link_type", "none", "yes");
INSERT INTO `wpj1_options` VALUES("67", "image_default_size", "", "yes");
INSERT INTO `wpj1_options` VALUES("68", "image_default_align", "", "yes");
INSERT INTO `wpj1_options` VALUES("69", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wpj1_options` VALUES("70", "close_comments_days_old", "14", "yes");
INSERT INTO `wpj1_options` VALUES("71", "thread_comments", "1", "yes");
INSERT INTO `wpj1_options` VALUES("72", "thread_comments_depth", "5", "yes");
INSERT INTO `wpj1_options` VALUES("73", "page_comments", "0", "yes");
INSERT INTO `wpj1_options` VALUES("74", "comments_per_page", "50", "yes");
INSERT INTO `wpj1_options` VALUES("75", "default_comments_page", "newest", "yes");
INSERT INTO `wpj1_options` VALUES("76", "comment_order", "asc", "yes");
INSERT INTO `wpj1_options` VALUES("77", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("78", "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");
INSERT INTO `wpj1_options` VALUES("79", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("80", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("81", "uninstall_plugins", "a:4:{s:46:\"under-construction-page/under-construction.php\";a:2:{i:0;s:3:\"UCP\";i:1;s:9:\"uninstall\";}s:33:\"font-organizer/font-organizer.php\";s:12:\"fo_uninstall\";s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";a:2:{i:0;s:14:\"wpl_extensions\";i:1;s:13:\"uninstall_wpl\";}s:41:\"google-maps-widget/google-maps-widget.php\";a:2:{i:0;s:3:\"GMW\";i:1;s:9:\"uninstall\";}}", "no");
INSERT INTO `wpj1_options` VALUES("82", "timezone_string", "", "yes");
INSERT INTO `wpj1_options` VALUES("83", "page_for_posts", "0", "yes");
INSERT INTO `wpj1_options` VALUES("84", "page_on_front", "43", "yes");
INSERT INTO `wpj1_options` VALUES("85", "default_post_format", "0", "yes");
INSERT INTO `wpj1_options` VALUES("86", "link_manager_enabled", "0", "yes");
INSERT INTO `wpj1_options` VALUES("87", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wpj1_options` VALUES("88", "site_icon", "0", "yes");
INSERT INTO `wpj1_options` VALUES("89", "medium_large_size_w", "768", "yes");
INSERT INTO `wpj1_options` VALUES("90", "medium_large_size_h", "0", "yes");
INSERT INTO `wpj1_options` VALUES("91", "initial_db_version", "38590", "yes");
INSERT INTO `wpj1_options` VALUES("92", "wpj1_user_roles", "a:13:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:222:{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:12:\"manage_fonts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"publish_hb_rooms\";b:1;s:15:\"delete_hb_rooms\";b:1;s:25:\"delete_published_hb_rooms\";b:1;s:23:\"delete_private_hb_rooms\";b:1;s:22:\"delete_others_hb_rooms\";b:1;s:20:\"edit_others_hb_rooms\";b:1;s:13:\"edit_hb_rooms\";b:1;s:23:\"edit_published_hb_rooms\";b:1;s:21:\"edit_private_hb_rooms\";b:1;s:19:\"publish_hb_bookings\";b:1;s:18:\"delete_hb_bookings\";b:1;s:28:\"delete_published_hb_bookings\";b:1;s:26:\"delete_private_hb_bookings\";b:1;s:25:\"delete_others_hb_bookings\";b:1;s:23:\"edit_others_hb_bookings\";b:1;s:16:\"edit_hb_bookings\";b:1;s:26:\"edit_published_hb_bookings\";b:1;s:24:\"edit_private_hb_bookings\";b:1;s:17:\"manage_hb_booking\";b:1;s:17:\"manage_awebooking\";b:1;s:26:\"manage_awebooking_settings\";b:1;s:15:\"edit_awebooking\";b:1;s:15:\"read_awebooking\";b:1;s:17:\"delete_awebooking\";b:1;s:16:\"edit_awebookings\";b:1;s:23:\"edit_others_awebookings\";b:1;s:19:\"publish_awebookings\";b:1;s:24:\"read_private_awebookings\";b:1;s:18:\"delete_awebookings\";b:1;s:26:\"delete_private_awebookings\";b:1;s:28:\"delete_published_awebookings\";b:1;s:25:\"delete_others_awebookings\";b:1;s:24:\"edit_private_awebookings\";b:1;s:26:\"edit_published_awebookings\";b:1;s:23:\"manage_awebooking_terms\";b:1;s:21:\"edit_awebooking_terms\";b:1;s:23:\"delete_awebooking_terms\";b:1;s:23:\"assign_awebooking_terms\";b:1;s:14:\"edit_room_type\";b:1;s:14:\"read_room_type\";b:1;s:16:\"delete_room_type\";b:1;s:15:\"edit_room_types\";b:1;s:22:\"edit_others_room_types\";b:1;s:18:\"publish_room_types\";b:1;s:23:\"read_private_room_types\";b:1;s:17:\"delete_room_types\";b:1;s:25:\"delete_private_room_types\";b:1;s:27:\"delete_published_room_types\";b:1;s:24:\"delete_others_room_types\";b:1;s:23:\"edit_private_room_types\";b:1;s:25:\"edit_published_room_types\";b:1;s:22:\"manage_room_type_terms\";b:1;s:20:\"edit_room_type_terms\";b:1;s:22:\"delete_room_type_terms\";b:1;s:22:\"assign_room_type_terms\";b:1;s:17:\"edit_pricing_rate\";b:1;s:17:\"read_pricing_rate\";b:1;s:19:\"delete_pricing_rate\";b:1;s:18:\"edit_pricing_rates\";b:1;s:25:\"edit_others_pricing_rates\";b:1;s:21:\"publish_pricing_rates\";b:1;s:26:\"read_private_pricing_rates\";b:1;s:20:\"delete_pricing_rates\";b:1;s:28:\"delete_private_pricing_rates\";b:1;s:30:\"delete_published_pricing_rates\";b:1;s:27:\"delete_others_pricing_rates\";b:1;s:26:\"edit_private_pricing_rates\";b:1;s:28:\"edit_published_pricing_rates\";b:1;s:25:\"manage_pricing_rate_terms\";b:1;s:23:\"edit_pricing_rate_terms\";b:1;s:25:\"delete_pricing_rate_terms\";b:1;s:25:\"assign_pricing_rate_terms\";b:1;s:15:\"manage_hotelier\";b:1;s:9:\"edit_room\";b:1;s:9:\"read_room\";b:1;s:11:\"delete_room\";b:1;s:10:\"edit_rooms\";b:1;s:17:\"edit_others_rooms\";b:1;s:13:\"publish_rooms\";b:1;s:18:\"read_private_rooms\";b:1;s:12:\"delete_rooms\";b:1;s:20:\"delete_private_rooms\";b:1;s:22:\"delete_published_rooms\";b:1;s:19:\"delete_others_rooms\";b:1;s:18:\"edit_private_rooms\";b:1;s:20:\"edit_published_rooms\";b:1;s:17:\"manage_room_terms\";b:1;s:15:\"edit_room_terms\";b:1;s:17:\"delete_room_terms\";b:1;s:17:\"assign_room_terms\";b:1;s:21:\"edit_room_reservation\";b:1;s:21:\"read_room_reservation\";b:1;s:23:\"delete_room_reservation\";b:1;s:22:\"edit_room_reservations\";b:1;s:29:\"edit_others_room_reservations\";b:1;s:25:\"publish_room_reservations\";b:1;s:30:\"read_private_room_reservations\";b:1;s:24:\"delete_room_reservations\";b:1;s:32:\"delete_private_room_reservations\";b:1;s:34:\"delete_published_room_reservations\";b:1;s:31:\"delete_others_room_reservations\";b:1;s:30:\"edit_private_room_reservations\";b:1;s:32:\"edit_published_room_reservations\";b:1;s:29:\"manage_room_reservation_terms\";b:1;s:27:\"edit_room_reservation_terms\";b:1;s:29:\"delete_room_reservation_terms\";b:1;s:29:\"assign_room_reservation_terms\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:18:\"wphb_hotel_manager\";a:2:{s:4:\"name\";s:13:\"Hotel Manager\";s:12:\"capabilities\";a:22:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:15:\"delete_hb_rooms\";b:1;s:16:\"publish_hb_rooms\";b:1;s:25:\"delete_published_hb_rooms\";b:1;s:23:\"delete_private_hb_rooms\";b:1;s:22:\"delete_others_hb_rooms\";b:1;s:20:\"edit_others_hb_rooms\";b:1;s:13:\"edit_hb_rooms\";b:1;s:23:\"edit_published_hb_rooms\";b:1;s:21:\"edit_private_hb_rooms\";b:1;s:19:\"publish_hb_bookings\";b:1;s:18:\"delete_hb_bookings\";b:1;s:28:\"delete_published_hb_bookings\";b:1;s:26:\"delete_private_hb_bookings\";b:1;s:25:\"delete_others_hb_bookings\";b:1;s:23:\"edit_others_hb_bookings\";b:1;s:16:\"edit_hb_bookings\";b:1;s:26:\"edit_published_hb_bookings\";b:1;s:24:\"edit_private_hb_bookings\";b:1;s:12:\"upload_files\";b:1;s:17:\"manage_hb_booking\";b:1;}}s:19:\"wphb_booking_editor\";a:2:{s:4:\"name\";s:14:\"Booking Editor\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:16:\"publish_hb_rooms\";b:1;s:15:\"delete_hb_rooms\";b:1;s:25:\"delete_published_hb_rooms\";b:1;s:23:\"delete_private_hb_rooms\";b:1;s:22:\"delete_others_hb_rooms\";b:1;s:20:\"edit_others_hb_rooms\";b:1;s:13:\"edit_hb_rooms\";b:1;s:23:\"edit_published_hb_rooms\";b:1;s:21:\"edit_private_hb_rooms\";b:1;s:19:\"publish_hb_bookings\";b:1;s:18:\"delete_hb_bookings\";b:1;s:28:\"delete_published_hb_bookings\";b:1;s:26:\"delete_private_hb_bookings\";b:1;s:25:\"delete_others_hb_bookings\";b:1;s:23:\"edit_others_hb_bookings\";b:1;s:16:\"edit_hb_bookings\";b:1;s:26:\"edit_published_hb_bookings\";b:1;s:24:\"edit_private_hb_bookings\";b:1;s:12:\"upload_files\";b:1;}}s:19:\"awebooking_customer\";a:2:{s:4:\"name\";s:14:\"Hotel Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:23:\"awebooking_receptionist\";a:2:{s:4:\"name\";s:18:\"Hotel Receptionist\";s:12:\"capabilities\";a:46:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_awebooking\";b:1;s:14:\"read_room_type\";b:1;s:15:\"edit_room_types\";b:1;s:22:\"edit_others_room_types\";b:1;s:23:\"read_private_room_types\";b:1;s:22:\"manage_room_type_terms\";b:1;s:17:\"read_pricing_rate\";b:1;s:18:\"edit_pricing_rates\";b:1;s:25:\"edit_others_pricing_rates\";b:1;s:26:\"read_private_pricing_rates\";b:1;s:15:\"edit_awebooking\";b:1;s:15:\"read_awebooking\";b:1;s:17:\"delete_awebooking\";b:1;s:16:\"edit_awebookings\";b:1;s:23:\"edit_others_awebookings\";b:1;s:19:\"publish_awebookings\";b:1;s:24:\"read_private_awebookings\";b:1;s:18:\"delete_awebookings\";b:1;s:26:\"delete_private_awebookings\";b:1;s:28:\"delete_published_awebookings\";b:1;s:25:\"delete_others_awebookings\";b:1;s:24:\"edit_private_awebookings\";b:1;s:26:\"edit_published_awebookings\";b:1;s:23:\"manage_awebooking_terms\";b:1;s:21:\"edit_awebooking_terms\";b:1;s:23:\"delete_awebooking_terms\";b:1;s:23:\"assign_awebooking_terms\";b:1;}}s:18:\"awebooking_manager\";a:2:{s:4:\"name\";s:13:\"Hotel Manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:17:\"manage_awebooking\";b:1;s:26:\"manage_awebooking_settings\";b:1;s:15:\"edit_awebooking\";b:1;s:15:\"read_awebooking\";b:1;s:17:\"delete_awebooking\";b:1;s:16:\"edit_awebookings\";b:1;s:23:\"edit_others_awebookings\";b:1;s:19:\"publish_awebookings\";b:1;s:24:\"read_private_awebookings\";b:1;s:18:\"delete_awebookings\";b:1;s:26:\"delete_private_awebookings\";b:1;s:28:\"delete_published_awebookings\";b:1;s:25:\"delete_others_awebookings\";b:1;s:24:\"edit_private_awebookings\";b:1;s:26:\"edit_published_awebookings\";b:1;s:23:\"manage_awebooking_terms\";b:1;s:21:\"edit_awebooking_terms\";b:1;s:23:\"delete_awebooking_terms\";b:1;s:23:\"assign_awebooking_terms\";b:1;s:14:\"edit_room_type\";b:1;s:14:\"read_room_type\";b:1;s:16:\"delete_room_type\";b:1;s:15:\"edit_room_types\";b:1;s:22:\"edit_others_room_types\";b:1;s:18:\"publish_room_types\";b:1;s:23:\"read_private_room_types\";b:1;s:17:\"delete_room_types\";b:1;s:25:\"delete_private_room_types\";b:1;s:27:\"delete_published_room_types\";b:1;s:24:\"delete_others_room_types\";b:1;s:23:\"edit_private_room_types\";b:1;s:25:\"edit_published_room_types\";b:1;s:22:\"manage_room_type_terms\";b:1;s:20:\"edit_room_type_terms\";b:1;s:22:\"delete_room_type_terms\";b:1;s:22:\"assign_room_type_terms\";b:1;s:17:\"edit_pricing_rate\";b:1;s:17:\"read_pricing_rate\";b:1;s:19:\"delete_pricing_rate\";b:1;s:18:\"edit_pricing_rates\";b:1;s:25:\"edit_others_pricing_rates\";b:1;s:21:\"publish_pricing_rates\";b:1;s:26:\"read_private_pricing_rates\";b:1;s:20:\"delete_pricing_rates\";b:1;s:28:\"delete_private_pricing_rates\";b:1;s:30:\"delete_published_pricing_rates\";b:1;s:27:\"delete_others_pricing_rates\";b:1;s:26:\"edit_private_pricing_rates\";b:1;s:28:\"edit_published_pricing_rates\";b:1;s:25:\"manage_pricing_rate_terms\";b:1;s:23:\"edit_pricing_rate_terms\";b:1;s:25:\"delete_pricing_rate_terms\";b:1;s:25:\"assign_pricing_rate_terms\";b:1;}}s:13:\"hotel_manager\";a:2:{s:4:\"name\";s:13:\"Hotel Manager\";s:12:\"capabilities\";a:65:{s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:15:\"manage_hotelier\";b:1;s:9:\"edit_room\";b:1;s:9:\"read_room\";b:1;s:11:\"delete_room\";b:1;s:10:\"edit_rooms\";b:1;s:17:\"edit_others_rooms\";b:1;s:13:\"publish_rooms\";b:1;s:18:\"read_private_rooms\";b:1;s:12:\"delete_rooms\";b:1;s:20:\"delete_private_rooms\";b:1;s:22:\"delete_published_rooms\";b:1;s:19:\"delete_others_rooms\";b:1;s:18:\"edit_private_rooms\";b:1;s:20:\"edit_published_rooms\";b:1;s:17:\"manage_room_terms\";b:1;s:15:\"edit_room_terms\";b:1;s:17:\"delete_room_terms\";b:1;s:17:\"assign_room_terms\";b:1;s:21:\"edit_room_reservation\";b:1;s:21:\"read_room_reservation\";b:1;s:23:\"delete_room_reservation\";b:1;s:22:\"edit_room_reservations\";b:1;s:29:\"edit_others_room_reservations\";b:1;s:25:\"publish_room_reservations\";b:1;s:30:\"read_private_room_reservations\";b:1;s:24:\"delete_room_reservations\";b:1;s:32:\"delete_private_room_reservations\";b:1;s:34:\"delete_published_room_reservations\";b:1;s:31:\"delete_others_room_reservations\";b:1;s:30:\"edit_private_room_reservations\";b:1;s:32:\"edit_published_room_reservations\";b:1;s:29:\"manage_room_reservation_terms\";b:1;s:27:\"edit_room_reservation_terms\";b:1;s:29:\"delete_room_reservation_terms\";b:1;s:29:\"assign_room_reservation_terms\";b:1;}}}", "yes");
INSERT INTO `wpj1_options` VALUES("93", "fresh_site", "0", "yes");
INSERT INTO `wpj1_options` VALUES("94", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("95", "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");
INSERT INTO `wpj1_options` VALUES("96", "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");
INSERT INTO `wpj1_options` VALUES("97", "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");
INSERT INTO `wpj1_options` VALUES("98", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("99", "sidebars_widgets", "a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:17:\"recent-comments-2\";i:4;s:10:\"archives-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wpj1_options` VALUES("1217", "UPCP_List_View_Image_Holder_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1218", "UPCP_List_View_Image_Border_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1219", "UPCP_List_View_Item_Margin_Left", "", "yes");
INSERT INTO `wpj1_options` VALUES("1220", "UPCP_List_View_Item_Margin_Top", "", "yes");
INSERT INTO `wpj1_options` VALUES("1221", "UPCP_List_View_Item_Padding", "", "yes");
INSERT INTO `wpj1_options` VALUES("1222", "UPCP_List_View_Item_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1223", "UPCP_List_View_Title_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1224", "UPCP_List_View_Title_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1225", "UPCP_List_View_Price_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1226", "UPCP_List_View_Price_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1227", "UPCP_Detail_View_Image_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1228", "UPCP_Detail_View_Image_Width", "", "yes");
INSERT INTO `wpj1_options` VALUES("1229", "UPCP_Detail_View_Image_Holder_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1230", "UPCP_Detail_View_Image_Holder_Width", "", "yes");
INSERT INTO `wpj1_options` VALUES("1231", "UPCP_Detail_View_Image_Border_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1232", "UPCP_Detail_View_Box_Padding", "", "yes");
INSERT INTO `wpj1_options` VALUES("1233", "UPCP_Detail_View_Box_Margin", "", "yes");
INSERT INTO `wpj1_options` VALUES("1234", "UPCP_Detail_View_Border_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1235", "UPCP_Detail_View_Title_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1236", "UPCP_Detail_View_Title_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1237", "UPCP_Detail_View_Price_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1238", "UPCP_Detail_View_Price_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1239", "UPCP_Detail_View_Background_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1240", "UPCP_Sidebar_Header_Font", "", "yes");
INSERT INTO `wpj1_options` VALUES("1241", "UPCP_Sidebar_Header_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1242", "UPCP_Sidebar_Header_Font_Weight", "", "yes");
INSERT INTO `wpj1_options` VALUES("1243", "UPCP_Sidebar_Header_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1244", "UPCP_Sidebar_Subheader_Font", "", "yes");
INSERT INTO `wpj1_options` VALUES("1245", "UPCP_Sidebar_Subheader_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1246", "UPCP_Sidebar_Subheader_Font_Weight", "", "yes");
INSERT INTO `wpj1_options` VALUES("1247", "UPCP_Sidebar_Subheader_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1248", "UPCP_Sidebar_Checkbox_Font", "", "yes");
INSERT INTO `wpj1_options` VALUES("1249", "UPCP_Sidebar_Checkbox_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1250", "UPCP_Sidebar_Checkbox_Font_Weight", "", "yes");
INSERT INTO `wpj1_options` VALUES("1251", "UPCP_Sidebar_Checkbox_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1276", "_transient_timeout_wc_product_loopd3c61520039162", "1522631740", "no");
INSERT INTO `wpj1_options` VALUES("1277", "_transient_wc_product_loopd3c61520039162", "O:8:\"stdClass\":5:{s:3:\"ids\";a:2:{i:0;i:206060;i:1;i:206063;}s:5:\"total\";i:2;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}", "no");
INSERT INTO `wpj1_options` VALUES("2181", "_site_transient_timeout_theme_roots", "1522114486", "no");
INSERT INTO `wpj1_options` VALUES("2182", "_site_transient_theme_roots", "a:3:{s:22:\"panbilresidence.com.01\";s:7:\"/themes\";s:19:\"panbilresidence.com\";s:7:\"/themes\";s:15:\"panbilresidence\";s:7:\"/themes\";}", "no");
INSERT INTO `wpj1_options` VALUES("1586", "tp_hotel_booking_single_purchase", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1587", "tp_hotel_booking_currency", "USD", "yes");
INSERT INTO `wpj1_options` VALUES("1588", "tp_hotel_booking_price_currency_position", "left", "yes");
INSERT INTO `wpj1_options` VALUES("1589", "tp_hotel_booking_price_thousands_separator", ",", "yes");
INSERT INTO `wpj1_options` VALUES("1590", "tp_hotel_booking_price_decimals_separator", ".", "yes");
INSERT INTO `wpj1_options` VALUES("1595", "tp_hotel_booking_price_display", "min", "yes");
INSERT INTO `wpj1_options` VALUES("1596", "tp_hotel_booking_advance_payment", "50", "yes");
INSERT INTO `wpj1_options` VALUES("1597", "tp_hotel_booking_hotel_name", "Hanoi Daewoo Hotel", "yes");
INSERT INTO `wpj1_options` VALUES("1598", "tp_hotel_booking_hotel_address", "Ha Noi", "yes");
INSERT INTO `wpj1_options` VALUES("1599", "tp_hotel_booking_hotel_city", "Ha Noi", "yes");
INSERT INTO `wpj1_options` VALUES("1600", "tp_hotel_booking_hotel_state", "Hanoi Daewoo Hotel", "yes");
INSERT INTO `wpj1_options` VALUES("1601", "tp_hotel_booking_hotel_country", "Vietnam", "yes");
INSERT INTO `wpj1_options` VALUES("1602", "tp_hotel_booking_hotel_zip_code", "10000", "yes");
INSERT INTO `wpj1_options` VALUES("1603", "tp_hotel_booking_hotel_phone_number", "", "yes");
INSERT INTO `wpj1_options` VALUES("1604", "tp_hotel_booking_hotel_fax_number", "", "yes");
INSERT INTO `wpj1_options` VALUES("1605", "tp_hotel_booking_hotel_email_address", "", "yes");
INSERT INTO `wpj1_options` VALUES("1606", "tp_hotel_booking_email_general_from_name", "Panbil Residence", "yes");
INSERT INTO `wpj1_options` VALUES("1607", "tp_hotel_booking_email_general_from_email", "admin@panbilresidence.com", "yes");
INSERT INTO `wpj1_options` VALUES("1608", "tp_hotel_booking_email_general_subject", "Reservation", "yes");
INSERT INTO `wpj1_options` VALUES("1609", "tp_hotel_booking_cancel_payment", "12", "yes");
INSERT INTO `wpj1_options` VALUES("1610", "tp_hotel_booking_guest_checkout", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1611", "tp_hotel_booking_catalog_number_column", "4", "yes");
INSERT INTO `wpj1_options` VALUES("1612", "tp_hotel_booking_posts_per_page", "8", "yes");
INSERT INTO `wpj1_options` VALUES("1613", "tp_hotel_booking_catalog_image", "a:2:{s:5:\"width\";i:270;s:6:\"height\";i:270;}", "yes");
INSERT INTO `wpj1_options` VALUES("1614", "tp_hotel_booking_catalog_display_rating", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1615", "tp_hotel_booking_room_image_gallery", "a:2:{s:5:\"width\";i:270;s:6:\"height\";i:270;}", "yes");
INSERT INTO `wpj1_options` VALUES("1616", "tp_hotel_booking_room_thumbnail", "a:2:{s:5:\"width\";i:150;s:6:\"height\";i:150;}", "yes");
INSERT INTO `wpj1_options` VALUES("1617", "tp_hotel_booking_display_pricing_plans", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1618", "tp_hotel_booking_enable_review_rating", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1619", "tp_hotel_booking_review_rating_required", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1620", "tp_hotel_booking_enable_gallery_lightbox", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1621", "hotel_booking_version", "1.9.2", "yes");
INSERT INTO `wpj1_options` VALUES("935", "_transient_wc_attribute_taxonomies", "a:1:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:8:\"testSlug\";s:15:\"attribute_label\";s:8:\"testName\";s:14:\"attribute_type\";s:4:\"text\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}", "yes");
INSERT INTO `wpj1_options` VALUES("937", "default_product_cat", "23", "yes");
INSERT INTO `wpj1_options` VALUES("962", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1122", "woocommerce_version", "3.3.3", "yes");
INSERT INTO `wpj1_options` VALUES("1123", "woocommerce_db_version", "3.3.3", "yes");
INSERT INTO `wpj1_options` VALUES("177", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wpj1_options` VALUES("1175", "UPCP_XML_Sitemap_URL", "", "yes");
INSERT INTO `wpj1_options` VALUES("1176", "UPCP_Update_RR_Rules", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1178", "UPCP_WC_Debugging", "ID: 3", "yes");
INSERT INTO `wpj1_options` VALUES("1207", "UPCP_Thumbnail_View_Box_Padding", "", "yes");
INSERT INTO `wpj1_options` VALUES("1208", "UPCP_Thumbnail_View_Box_Margin", "", "yes");
INSERT INTO `wpj1_options` VALUES("1209", "UPCP_Thumbnail_View_Border_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1210", "UPCP_Thumbnail_View_Title_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1211", "UPCP_Thumbnail_View_Title_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1212", "UPCP_Thumbnail_View_Price_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1213", "UPCP_Thumbnail_View_Price_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1214", "UPCP_Thumbnail_View_Background_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1215", "UPCP_List_View_Image_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1216", "UPCP_List_View_Image_Width", "", "yes");
INSERT INTO `wpj1_options` VALUES("100", "widget_pages", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("101", "widget_calendar", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("102", "widget_media_audio", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("103", "widget_media_image", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("104", "widget_media_gallery", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("105", "widget_media_video", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("106", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("107", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("108", "widget_custom_html", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("109", "cron", "a:10:{i:1522113605;a:1:{s:37:\"awebooking_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1522115426;a:1:{s:26:\"epl_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1522121892;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1522121920;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:1522122221;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1522122669;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:1522126022;a:1:{s:25:\"hotelier_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1522169222;a:1:{s:39:\"hotelier_process_completed_reservations\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1524454915;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wpj1_options` VALUES("110", "et_divi", "a:154:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:27:\"divi_skip_font_subset_force\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:9:\"divi_logo\";s:85:\"http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png-1.png\";s:12:\"divi_favicon\";s:88:\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-PANBIL-RESIDENCE-VECTOR-1.jpg\";s:14:\"divi_fixed_nav\";s:5:\"false\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:1707:\"input[type=text],\r\ninput[type=email],\r\ninput[type=date],\r\ntextarea {\r\n    width: 100%;\r\n    padding: 12px;\r\n    border: 1px solid #ccc;\r\n    border-radius: 4px;\r\n}\r\n\r\ninput[type=submit] {\r\n		background-color: #c39d63;\r\n    border: none;\r\n    color: white;\r\n    padding: 15px 32px;\r\n    text-align: center;\r\n    text-decoration: none;\r\n    display: inline-block;\r\n    font-size: 15px;\r\n		float: right;\r\n}\r\n\r\n.ten-columns .et_pb_module {width: 10%; float: left;}\r\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\r\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\r\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\r\n.six-columns .et_pb_module {width: 16.66%; float: left;}\r\n.five-columns .et_pb_module {width: 20%; float: left;}\r\n\r\n@media (max-width: 980px){\r\n.ten-columns .et_pb_module {width: 20%;}\r\n.nine-columns .et_pb_module {width: 33.3%;}\r\n.eight-columns .et_pb_module {width: 25%;}\r\n.seven-columns .et_pb_module {width: 25%;}\r\n.six-columns .et_pb_module {width: 33.3%;}\r\n.five-columns .et_pb_module {width: 33.3%;}\r\n}\r\n \r\n@media all and (max-width: 767px) {\r\n.ten-columns .et_pb_module {width: 100%;}\r\n.nine-columns .et_pb_module {width: 100%;}\r\n.eight-columns .et_pb_module {width: 100%;}\r\n.seven-columns .et_pb_module {width: 100%;}\r\n.six-columns .et_pb_module {width: 100%;}\r\n.five-columns .et_pb_module {width: 100%;}\r\n}\r\n\r\n.et_pb_portfolio_item .et_overlay {\r\nz-index: 6;\r\n}\r\n\r\n.et_pb_fullwidth_portfolio .et_pb_portfolio_image h3 {\r\ndisplay: inline-block;\r\nposition: relative;\r\nz-index: 6;\r\n}\r\n\r\n.et_pb_portfolio_item .et_pb_portfolio_image:hover:after {\r\ncontent:\"\";\r\nposition: absolute;\r\nleft: 0;\r\ntop: 0;\r\nwidth: 100%;\r\nheight: 100%;\r\nz-index: 5;\r\ndisplay: block;\r\n}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:12:\"header_style\";s:8:\"centered\";s:12:\"vertical_nav\";b:0;s:11:\"menu_height\";i:106;s:11:\"logo_height\";i:100;s:22:\"primary_nav_font_style\";s:0:\"\";s:24:\"show_footer_social_icons\";b:0;s:29:\"disable_custom_footer_credits\";b:1;s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:4:\"left\";s:21:\"et_fb_pref_modal_snap\";s:4:\"true\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:181;s:27:\"et_fb_pref_modal_position_x\";i:0;s:27:\"et_fb_pref_modal_position_y\";i:0;s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:16:\"show_search_icon\";b:0;s:24:\"primary_nav_font_spacing\";i:3;s:16:\"primary_nav_font\";s:13:\"Didact Gothic\";s:9:\"menu_link\";s:7:\"#000000\";s:16:\"menu_link_active\";s:7:\"#996500\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:30:\"primary_nav_dropdown_animation\";s:4:\"fade\";s:23:\"secondary_nav_fullwidth\";b:1;s:12:\"phone_number\";s:13:\"(0778) 371333\";s:12:\"header_email\";s:27:\"enquiry@panbilresidence.com\";s:12:\"boxed_layout\";b:0;s:12:\"accent_color\";s:7:\"#a08a1b\";s:23:\"secondary_nav_font_size\";i:13;s:18:\"secondary_nav_font\";s:13:\"Didact Gothic\";s:26:\"secondary_nav_font_spacing\";i:1;s:16:\"secondary_nav_bg\";s:7:\"#ffffff\";s:28:\"secondary_nav_text_color_new\";s:7:\"#d89b00\";s:9:\"footer_bg\";s:7:\"#e2e2e2\";s:21:\"footer_menu_font_size\";i:10;s:27:\"bottom_bar_background_color\";s:20:\"rgba(145,104,0,0.95)\";s:14:\"body_font_size\";i:16;s:12:\"heading_font\";s:7:\"PT Sans\";s:9:\"body_font\";s:13:\"Didact Gothic\";s:27:\"et_pb_clear_templates_cache\";b:1;s:13:\"nav_fullwidth\";b:1;s:17:\"hide_primary_logo\";b:0;s:24:\"show_header_social_icons\";b:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("121", "can_compress_scripts", "0", "no");
INSERT INTO `wpj1_options` VALUES("170", "et_google_api_settings", "a:2:{s:7:\"api_key\";s:39:\"AIzaSyCAmlN1-ZA1xZeOj_ELLHXfkJwa1-p_qeM\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}", "yes");
INSERT INTO `wpj1_options` VALUES("530", "uaf_current_version", "4.9.2", "yes");
INSERT INTO `wpj1_options` VALUES("531", "uaf_font_data", "null", "yes");
INSERT INTO `wpj1_options` VALUES("557", "fo_db_version", "2.1.1", "no");
INSERT INTO `wpj1_options` VALUES("523", "_site_transient_et_update_themes", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1522112690;}", "no");
INSERT INTO `wpj1_options` VALUES("1174", "UPCP_Permalink_Base", "", "yes");
INSERT INTO `wpj1_options` VALUES("345", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:25:\"admin@panbilresidence.com\";s:7:\"version\";s:5:\"4.9.4\";s:9:\"timestamp\";i:1517939415;}", "no");
INSERT INTO `wpj1_options` VALUES("529", "uaf_css_updated_timestamp", "1518983104", "yes");
INSERT INTO `wpj1_options` VALUES("538", "uaf_server_status", "test_successfull", "yes");
INSERT INTO `wpj1_options` VALUES("539", "uaf_server_msg", "", "yes");
INSERT INTO `wpj1_options` VALUES("358", "_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-4.9.4.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-4.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.4\";s:7:\"version\";s:5:\"4.9.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1522112685;s:15:\"version_checked\";s:5:\"4.9.4\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wpj1_options` VALUES("1177", "product_cat_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1171", "UPCP_Additional_Info_Category_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1172", "UPCP_Additional_Info_SubCategory_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1173", "UPCP_Additional_Info_Tags_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("117", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1522112689;s:7:\"checked\";a:3:{s:22:\"panbilresidence.com.01\";s:5:\"1.0.5\";s:19:\"panbilresidence.com\";s:5:\"1.0.0\";s:15:\"panbilresidence\";s:6:\"3.0.96\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wpj1_options` VALUES("262", "_et_core_portability_temp_files", "a:1:{s:14:\"et_core_export\";a:1:{s:17:\"images_1517320485\";s:26:\"/tmp/1517320487-7X7t5I.tmp\";}}", "no");
INSERT INTO `wpj1_options` VALUES("269", "category_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1591", "tp_hotel_booking_price_number_of_decimal", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1592", "tp_hotel_booking_minimum_booking_day", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1593", "tp_hotel_booking_tax", "10", "yes");
INSERT INTO `wpj1_options` VALUES("1129", "UPCP_Trial_Expiry_Time", "1520642267", "yes");
INSERT INTO `wpj1_options` VALUES("1130", "UPCP_Trial_Happening", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1131", "UPCP_Catalogue_Style", "showcase", "yes");
INSERT INTO `wpj1_options` VALUES("1132", "UPCP_Currency_Symbol", "", "yes");
INSERT INTO `wpj1_options` VALUES("1133", "UPCP_Details_Image", "", "yes");
INSERT INTO `wpj1_options` VALUES("1134", "UPCP_Extra_Elements", "Blank", "yes");
INSERT INTO `wpj1_options` VALUES("1135", "UPCP_Social_Media", "Blank", "yes");
INSERT INTO `wpj1_options` VALUES("1136", "UPCP_Categories_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1137", "UPCP_SubCategories_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1138", "UPCP_Tags_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1139", "UPCP_Custom_Fields_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1140", "UPCP_Details_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1141", "UPCP_Sort_By_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1142", "UPCP_Price_Ascending_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1143", "UPCP_Price_Descending_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1144", "UPCP_Name_Ascending_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1145", "UPCP_Name_Descending_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1146", "UPCP_Product_Name_Search_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1147", "UPCP_Product_Name_Text_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1148", "UPCP_Back_To_Catalogue_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1149", "UPCP_Updating_Results_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1150", "UPCP_No_Results_Found_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1151", "UPCP_Products_Pagination_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1152", "UPCP_Read_More_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1153", "UPCP_Product_Details_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1154", "UPCP_Additional_Info_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1155", "UPCP_Contact_Us_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1156", "UPCP_Product_Inquiry_Form_Title_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1157", "UPCP_Customer_Reviews_Tab_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1158", "UPCP_Related_Products_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1159", "UPCP_Next_Product_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1160", "UPCP_Previous_Product_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1161", "UPCP_Of_Pagination_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1162", "UPCP_Compare_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1163", "UPCP_Sale_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1164", "UPCP_Side_By_Side_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1165", "UPCP_Inquire_Button_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1166", "UPCP_Add_To_Cart_Button_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1167", "UPCP_Send_Inquiry_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1168", "UPCP_Checkout_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1169", "UPCP_Empty_Cart_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("1170", "UPCP_Cart_Items_Label", "", "yes");
INSERT INTO `wpj1_options` VALUES("580", "OM4_Typekit", "a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"method\";s:3:\"css\";s:3:\"css\";s:0:\"\";s:5:\"async\";s:0:\"\";}}", "yes");
INSERT INTO `wpj1_options` VALUES("942", "woocommerce_admin_notices", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1206", "UPCP_Thumbnail_View_Box_Max_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("844", "woocommerce_store_address", "Jl. Jendral Ahmad Yani, Muka Kuning Batam Center", "yes");
INSERT INTO `wpj1_options` VALUES("845", "woocommerce_store_address_2", "", "yes");
INSERT INTO `wpj1_options` VALUES("846", "woocommerce_store_city", "Batam", "yes");
INSERT INTO `wpj1_options` VALUES("847", "woocommerce_default_country", "ID:KR", "yes");
INSERT INTO `wpj1_options` VALUES("848", "woocommerce_store_postcode", "29433", "yes");
INSERT INTO `wpj1_options` VALUES("849", "woocommerce_allowed_countries", "all", "yes");
INSERT INTO `wpj1_options` VALUES("850", "woocommerce_all_except_countries", "", "yes");
INSERT INTO `wpj1_options` VALUES("851", "woocommerce_specific_allowed_countries", "", "yes");
INSERT INTO `wpj1_options` VALUES("852", "woocommerce_ship_to_countries", "", "yes");
INSERT INTO `wpj1_options` VALUES("853", "woocommerce_specific_ship_to_countries", "", "yes");
INSERT INTO `wpj1_options` VALUES("854", "woocommerce_default_customer_address", "geolocation", "yes");
INSERT INTO `wpj1_options` VALUES("855", "woocommerce_calc_taxes", "no", "yes");
INSERT INTO `wpj1_options` VALUES("856", "woocommerce_currency", "IDR", "yes");
INSERT INTO `wpj1_options` VALUES("857", "woocommerce_currency_pos", "left", "yes");
INSERT INTO `wpj1_options` VALUES("858", "woocommerce_price_thousand_sep", ",", "yes");
INSERT INTO `wpj1_options` VALUES("859", "woocommerce_price_decimal_sep", ".", "yes");
INSERT INTO `wpj1_options` VALUES("860", "woocommerce_price_num_decimals", "2", "yes");
INSERT INTO `wpj1_options` VALUES("861", "woocommerce_shop_page_id", "206056", "yes");
INSERT INTO `wpj1_options` VALUES("862", "woocommerce_cart_redirect_after_add", "no", "yes");
INSERT INTO `wpj1_options` VALUES("863", "woocommerce_enable_ajax_add_to_cart", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("864", "woocommerce_weight_unit", "kg", "yes");
INSERT INTO `wpj1_options` VALUES("865", "woocommerce_dimension_unit", "cm", "yes");
INSERT INTO `wpj1_options` VALUES("866", "woocommerce_enable_reviews", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("867", "woocommerce_review_rating_verification_label", "yes", "no");
INSERT INTO `wpj1_options` VALUES("868", "woocommerce_review_rating_verification_required", "no", "no");
INSERT INTO `wpj1_options` VALUES("869", "woocommerce_enable_review_rating", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("870", "woocommerce_review_rating_required", "yes", "no");
INSERT INTO `wpj1_options` VALUES("871", "woocommerce_manage_stock", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("872", "woocommerce_hold_stock_minutes", "60", "no");
INSERT INTO `wpj1_options` VALUES("873", "woocommerce_notify_low_stock", "yes", "no");
INSERT INTO `wpj1_options` VALUES("874", "woocommerce_notify_no_stock", "yes", "no");
INSERT INTO `wpj1_options` VALUES("875", "woocommerce_stock_email_recipient", "admin@panbilresidence.com", "no");
INSERT INTO `wpj1_options` VALUES("876", "woocommerce_notify_low_stock_amount", "2", "no");
INSERT INTO `wpj1_options` VALUES("877", "woocommerce_notify_no_stock_amount", "0", "yes");
INSERT INTO `wpj1_options` VALUES("878", "woocommerce_hide_out_of_stock_items", "no", "yes");
INSERT INTO `wpj1_options` VALUES("879", "woocommerce_stock_format", "", "yes");
INSERT INTO `wpj1_options` VALUES("880", "woocommerce_file_download_method", "force", "no");
INSERT INTO `wpj1_options` VALUES("881", "woocommerce_downloads_require_login", "no", "no");
INSERT INTO `wpj1_options` VALUES("882", "woocommerce_downloads_grant_access_after_payment", "yes", "no");
INSERT INTO `wpj1_options` VALUES("883", "woocommerce_prices_include_tax", "no", "yes");
INSERT INTO `wpj1_options` VALUES("884", "woocommerce_tax_based_on", "shipping", "yes");
INSERT INTO `wpj1_options` VALUES("885", "woocommerce_shipping_tax_class", "inherit", "yes");
INSERT INTO `wpj1_options` VALUES("886", "woocommerce_tax_round_at_subtotal", "no", "yes");
INSERT INTO `wpj1_options` VALUES("887", "woocommerce_tax_classes", "Reduced rate\nZero rate", "yes");
INSERT INTO `wpj1_options` VALUES("888", "woocommerce_tax_display_shop", "excl", "yes");
INSERT INTO `wpj1_options` VALUES("889", "woocommerce_tax_display_cart", "excl", "no");
INSERT INTO `wpj1_options` VALUES("890", "woocommerce_price_display_suffix", "", "yes");
INSERT INTO `wpj1_options` VALUES("891", "woocommerce_tax_total_display", "itemized", "no");
INSERT INTO `wpj1_options` VALUES("892", "woocommerce_enable_shipping_calc", "yes", "no");
INSERT INTO `wpj1_options` VALUES("893", "woocommerce_shipping_cost_requires_address", "no", "no");
INSERT INTO `wpj1_options` VALUES("894", "woocommerce_ship_to_destination", "billing", "no");
INSERT INTO `wpj1_options` VALUES("895", "woocommerce_shipping_debug_mode", "no", "no");
INSERT INTO `wpj1_options` VALUES("896", "woocommerce_enable_coupons", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("897", "woocommerce_calc_discounts_sequentially", "no", "no");
INSERT INTO `wpj1_options` VALUES("898", "woocommerce_enable_guest_checkout", "yes", "no");
INSERT INTO `wpj1_options` VALUES("899", "woocommerce_force_ssl_checkout", "no", "yes");
INSERT INTO `wpj1_options` VALUES("900", "woocommerce_unforce_ssl_checkout", "no", "yes");
INSERT INTO `wpj1_options` VALUES("901", "woocommerce_cart_page_id", "206057", "yes");
INSERT INTO `wpj1_options` VALUES("902", "woocommerce_checkout_page_id", "206058", "yes");
INSERT INTO `wpj1_options` VALUES("903", "woocommerce_terms_page_id", "", "no");
INSERT INTO `wpj1_options` VALUES("904", "woocommerce_checkout_pay_endpoint", "order-pay", "yes");
INSERT INTO `wpj1_options` VALUES("905", "woocommerce_checkout_order_received_endpoint", "order-received", "yes");
INSERT INTO `wpj1_options` VALUES("906", "woocommerce_myaccount_add_payment_method_endpoint", "add-payment-method", "yes");
INSERT INTO `wpj1_options` VALUES("907", "woocommerce_myaccount_delete_payment_method_endpoint", "delete-payment-method", "yes");
INSERT INTO `wpj1_options` VALUES("908", "woocommerce_myaccount_set_default_payment_method_endpoint", "set-default-payment-method", "yes");
INSERT INTO `wpj1_options` VALUES("909", "woocommerce_myaccount_page_id", "206059", "yes");
INSERT INTO `wpj1_options` VALUES("910", "woocommerce_enable_signup_and_login_from_checkout", "yes", "no");
INSERT INTO `wpj1_options` VALUES("911", "woocommerce_enable_myaccount_registration", "no", "no");
INSERT INTO `wpj1_options` VALUES("912", "woocommerce_enable_checkout_login_reminder", "yes", "no");
INSERT INTO `wpj1_options` VALUES("913", "woocommerce_registration_generate_username", "yes", "no");
INSERT INTO `wpj1_options` VALUES("914", "woocommerce_registration_generate_password", "no", "no");
INSERT INTO `wpj1_options` VALUES("915", "woocommerce_myaccount_orders_endpoint", "orders", "yes");
INSERT INTO `wpj1_options` VALUES("916", "woocommerce_myaccount_view_order_endpoint", "view-order", "yes");
INSERT INTO `wpj1_options` VALUES("917", "woocommerce_myaccount_downloads_endpoint", "downloads", "yes");
INSERT INTO `wpj1_options` VALUES("918", "woocommerce_myaccount_edit_account_endpoint", "edit-account", "yes");
INSERT INTO `wpj1_options` VALUES("919", "woocommerce_myaccount_edit_address_endpoint", "edit-address", "yes");
INSERT INTO `wpj1_options` VALUES("920", "woocommerce_myaccount_payment_methods_endpoint", "payment-methods", "yes");
INSERT INTO `wpj1_options` VALUES("921", "woocommerce_myaccount_lost_password_endpoint", "lost-password", "yes");
INSERT INTO `wpj1_options` VALUES("922", "woocommerce_logout_endpoint", "customer-logout", "yes");
INSERT INTO `wpj1_options` VALUES("923", "woocommerce_email_from_name", "Panbil Residence", "no");
INSERT INTO `wpj1_options` VALUES("924", "woocommerce_email_from_address", "admin@panbilresidence.com", "no");
INSERT INTO `wpj1_options` VALUES("925", "woocommerce_email_header_image", "", "no");
INSERT INTO `wpj1_options` VALUES("926", "woocommerce_email_footer_text", "{site_title}", "no");
INSERT INTO `wpj1_options` VALUES("927", "woocommerce_email_base_color", "#96588a", "no");
INSERT INTO `wpj1_options` VALUES("928", "woocommerce_email_background_color", "#f7f7f7", "no");
INSERT INTO `wpj1_options` VALUES("929", "woocommerce_email_body_background_color", "#ffffff", "no");
INSERT INTO `wpj1_options` VALUES("930", "woocommerce_email_text_color", "#3c3c3c", "no");
INSERT INTO `wpj1_options` VALUES("931", "woocommerce_api_enabled", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("932", "woocommerce_permalinks", "a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("933", "current_theme_supports_woocommerce", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("934", "woocommerce_queue_flush_rewrite_rules", "no", "yes");
INSERT INTO `wpj1_options` VALUES("1322", "widget_lava_contact_single_page", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1323", "widget_lava_realestate_recents", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1324", "widget_lava_realestate_featured", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1341", "epl_settings", "a:56:{s:8:\"currency\";s:3:\"AUD\";s:17:\"currency_position\";s:6:\"before\";s:28:\"currency_thousands_separator\";s:1:\",\";s:26:\"currency_decimal_separator\";s:1:\".\";s:15:\"admin_unique_id\";s:1:\"0\";s:5:\"debug\";s:1:\"0\";s:12:\"display_bond\";s:1:\"0\";s:22:\"display_single_gallery\";s:1:\"0\";s:17:\"display_gallery_n\";s:1:\"4\";s:23:\"display_feature_columns\";s:1:\"2\";s:22:\"display_excerpt_length\";s:2:\"10\";s:25:\"display_archive_view_type\";s:4:\"grid\";s:20:\"use_fancy_navigation\";s:1:\"0\";s:10:\"label_bond\";s:4:\"Bond\";s:14:\"label_location\";s:6:\"Suburb\";s:12:\"label_suburb\";s:4:\"City\";s:10:\"label_city\";s:4:\"City\";s:11:\"label_state\";s:5:\"State\";s:14:\"label_postcode\";s:9:\"Post Code\";s:15:\"label_home_open\";s:9:\"Home Open\";s:9:\"label_poa\";s:3:\"POA\";s:9:\"label_new\";s:3:\"New\";s:17:\"label_under_offer\";s:11:\"Under Offer\";s:12:\"label_leased\";s:6:\"Leased\";s:10:\"label_sold\";s:4:\"Sold\";s:21:\"widget_label_property\";s:3:\"Buy\";s:17:\"widget_label_land\";s:4:\"Land\";s:19:\"widget_label_rental\";s:4:\"Rent\";s:18:\"widget_label_rural\";s:5:\"Rural\";s:21:\"widget_label_business\";s:8:\"Business\";s:23:\"widget_label_commercial\";s:10:\"Commercial\";s:28:\"widget_label_commercial_land\";s:15:\"Commercial Land\";s:25:\"epl_max_graph_sales_price\";s:7:\"2000000\";s:24:\"epl_max_graph_rent_price\";s:4:\"2000\";s:17:\"sticker_new_range\";s:1:\"7\";s:20:\"epl_admin_thumb_size\";s:16:\"admin-list-thumb\";s:21:\"epl_enable_city_field\";s:2:\"no\";s:24:\"epl_enable_country_field\";s:2:\"no\";s:17:\"epl_feeling_lucky\";s:3:\"off\";s:30:\"epl_lucky_disable_single_thumb\";s:3:\"off\";s:36:\"epl_lucky_disable_theme_single_thumb\";s:3:\"off\";s:31:\"epl_lucky_disable_archive_thumb\";s:3:\"off\";s:35:\"epl_lucky_disable_epl_archive_thumb\";s:3:\"off\";s:16:\"epl_use_core_css\";s:3:\"off\";s:14:\"epl_css_legacy\";s:3:\"off\";s:19:\"uninstall_on_delete\";s:1:\"0\";s:22:\"inspection_date_format\";s:7:\"l, dS F\";s:22:\"inspection_time_format\";s:5:\"h:i a\";s:29:\"custom_inspection_date_format\";s:7:\"l, dS F\";s:29:\"custom_inspection_time_format\";s:5:\"h:i a\";s:15:\"epl_video_width\";s:3:\"600\";s:18:\"min_contact_access\";s:8:\"level_10\";s:18:\"min_reports_access\";s:8:\"level_10\";s:19:\"activate_post_types\";a:1:{i:0;s:6:\"rental\";}s:22:\"epl_disable_google_api\";s:0:\"\";s:18:\"epl_google_api_key\";s:0:\"\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1342", "epl_version", "3.1.19", "yes");
INSERT INTO `wpj1_options` VALUES("1351", "widget_epl_author", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("786", "wpcf7", "a:2:{s:7:\"version\";s:5:\"5.0.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1519796893;s:7:\"version\";s:5:\"5.0.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}", "yes");
INSERT INTO `wpj1_options` VALUES("947", "_transient_woocommerce_webhook_ids", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("948", "widget_woocommerce_widget_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("949", "widget_woocommerce_layered_nav_filters", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("950", "widget_woocommerce_layered_nav", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("951", "widget_woocommerce_price_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("952", "widget_woocommerce_product_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("953", "widget_woocommerce_product_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("954", "widget_woocommerce_product_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("955", "widget_woocommerce_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("956", "widget_woocommerce_recently_viewed_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("957", "widget_woocommerce_top_rated_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("958", "widget_woocommerce_recent_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("959", "widget_woocommerce_rating_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("961", "_transient_wc_count_comments", "O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("965", "woocommerce_product_type", "physical", "yes");
INSERT INTO `wpj1_options` VALUES("966", "woocommerce_sell_in_person", "1", "yes");
INSERT INTO `wpj1_options` VALUES("967", "woocommerce_allow_tracking", "yes", "yes");
INSERT INTO `wpj1_options` VALUES("968", "woocommerce_tracker_last_send", "1520032256", "yes");
INSERT INTO `wpj1_options` VALUES("969", "woocommerce_ppec_paypal_settings", "a:2:{s:16:\"reroute_requests\";b:0;s:5:\"email\";b:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("970", "woocommerce_cheque_settings", "a:1:{s:7:\"enabled\";s:2:\"no\";}", "yes");
INSERT INTO `wpj1_options` VALUES("971", "woocommerce_bacs_settings", "a:1:{s:7:\"enabled\";s:2:\"no\";}", "yes");
INSERT INTO `wpj1_options` VALUES("972", "woocommerce_cod_settings", "a:1:{s:7:\"enabled\";s:3:\"yes\";}", "yes");
INSERT INTO `wpj1_options` VALUES("973", "_transient_shipping-transient-version", "1520032410", "yes");
INSERT INTO `wpj1_options` VALUES("976", "_transient_product_query-transient-version", "1520039162", "yes");
INSERT INTO `wpj1_options` VALUES("979", "_transient_product-transient-version", "1520039162", "yes");
INSERT INTO `wpj1_options` VALUES("980", "_transient_timeout_wc_shipping_method_count_0_1520032410", "1522624678", "no");
INSERT INTO `wpj1_options` VALUES("981", "_transient_wc_shipping_method_count_0_1520032410", "0", "no");
INSERT INTO `wpj1_options` VALUES("1205", "UPCP_Thumbnail_View_Box_Min_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1200", "UPCP_Thumbnail_View_Image_Width", "", "yes");
INSERT INTO `wpj1_options` VALUES("1201", "UPCP_Thumbnail_View_Image_Holder_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1202", "UPCP_Thumbnail_View_Image_Holder_Width", "", "yes");
INSERT INTO `wpj1_options` VALUES("1203", "UPCP_Thumbnail_View_Image_Border_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1204", "UPCP_Thumbnail_View_Box_Width", "", "yes");
INSERT INTO `wpj1_options` VALUES("1199", "UPCP_Thumbnail_View_Image_Height", "", "yes");
INSERT INTO `wpj1_options` VALUES("1196", "UPCP_Sale_Button_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1197", "UPCP_Details_Icon_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1198", "UPCP_Details_Icon_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1195", "UPCP_Sale_Button_Text_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1194", "UPCP_Sale_Button_Background_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1192", "UPCP_Compare_Button_Clicked_Background_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1193", "UPCP_Compare_Button_Clicked_Text_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1191", "UPCP_Compare_Button_Font_Size", "", "yes");
INSERT INTO `wpj1_options` VALUES("1190", "UPCP_Compare_Button_Text_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1083", "plugin_error", "", "yes");
INSERT INTO `wpj1_options` VALUES("1084", "UPCP_Product_Import", "None", "yes");
INSERT INTO `wpj1_options` VALUES("1009", "UPCP_Currency_Symbol_Location", "Before", "yes");
INSERT INTO `wpj1_options` VALUES("1010", "UPCP_Price_Filter", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1011", "UPCP_Sale_Mode", "Individual", "yes");
INSERT INTO `wpj1_options` VALUES("1012", "UPCP_Product_Sort", "", "yes");
INSERT INTO `wpj1_options` VALUES("1013", "UPCP_Product_Search", "name", "yes");
INSERT INTO `wpj1_options` VALUES("1014", "UPCP_Custom_Product_Page", "Tabbed", "yes");
INSERT INTO `wpj1_options` VALUES("1015", "UPCP_Sidebar_Order", "Normal", "yes");
INSERT INTO `wpj1_options` VALUES("1016", "UPCP_Apply_Contents_Filter", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1017", "UPCP_Maintain_Filtering", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1018", "UPCP_Thumbnail_Support", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1019", "UPCP_Show_Category_Descriptions", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1020", "UPCP_Show_Catalogue_Information", "None", "yes");
INSERT INTO `wpj1_options` VALUES("1021", "UPCP_Display_Category_Image", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1022", "UPCP_Display_SubCategory_Image", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1023", "UPCP_Overview_Mode", "None", "yes");
INSERT INTO `wpj1_options` VALUES("1024", "UPCP_Inner_Filter", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1025", "UPCP_Breadcrumbs", "None", "yes");
INSERT INTO `wpj1_options` VALUES("1026", "UPCP_Product_Comparison", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1027", "UPCP_Product_Inquiry_Form", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1028", "UPCP_Product_Inquiry_Cart", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1029", "UPCP_Inquiry_Form_Email", "0", "yes");
INSERT INTO `wpj1_options` VALUES("1030", "UPCP_Product_Reviews", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1031", "UPCP_Catalog_Display_Reviews", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1032", "UPCP_Lightbox", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1033", "UPCP_Lightbox_Mode", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1034", "UPCP_Hidden_Drop_Down_Sidebar_On_Mobile", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1035", "UPCP_Infinite_Scroll", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1036", "UPCP_Products_Per_Page", "1000000", "yes");
INSERT INTO `wpj1_options` VALUES("1037", "UPCP_Pagination_Location", "Top", "yes");
INSERT INTO `wpj1_options` VALUES("1038", "UPCP_CF_Conversion", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1039", "UPCP_Access_Role", "administrator", "yes");
INSERT INTO `wpj1_options` VALUES("1040", "UPCP_PP_Grid_Width", "90", "yes");
INSERT INTO `wpj1_options` VALUES("1041", "UPCP_PP_Grid_Height", "35", "yes");
INSERT INTO `wpj1_options` VALUES("1042", "UPCP_Top_Bottom_Padding", "10", "yes");
INSERT INTO `wpj1_options` VALUES("1043", "UPCP_Left_Right_Padding", "10", "yes");
INSERT INTO `wpj1_options` VALUES("1044", "UPCP_WooCommerce_Sync", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1045", "UPCP_WooCommerce_Show_Cart_Count", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1046", "UPCP_WooCommerce_Checkout", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1047", "UPCP_WooCommerce_Cart_Page", "Checkout", "yes");
INSERT INTO `wpj1_options` VALUES("1048", "UPCP_WooCommerce_Product_Page", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1049", "UPCP_WooCommerce_Back_Link", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1050", "UPCP_SEO_Option", "None", "yes");
INSERT INTO `wpj1_options` VALUES("1051", "UPCP_SEO_Integration", "Add", "yes");
INSERT INTO `wpj1_options` VALUES("1052", "UPCP_SEO_Title", "[page-title] | [product-name]", "yes");
INSERT INTO `wpj1_options` VALUES("1053", "UPCP_Update_Breadcrumbs", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1054", "UPCP_List_View_Click_Action", "Expand", "yes");
INSERT INTO `wpj1_options` VALUES("1055", "UPCP_Details_Icon_Type", "Default", "yes");
INSERT INTO `wpj1_options` VALUES("1056", "UPCP_Pagination_Background", "None", "yes");
INSERT INTO `wpj1_options` VALUES("1057", "UPCP_Pagination_Border", "none", "yes");
INSERT INTO `wpj1_options` VALUES("1058", "UPCP_Pagination_Shadow", "shadow-none", "yes");
INSERT INTO `wpj1_options` VALUES("1059", "UPCP_Pagination_Gradient", "gradient-none", "yes");
INSERT INTO `wpj1_options` VALUES("1060", "UPCP_Pagination_Font", "none", "yes");
INSERT INTO `wpj1_options` VALUES("1061", "UPCP_Sidebar_Title_Collapse", "no", "yes");
INSERT INTO `wpj1_options` VALUES("1062", "UPCP_Sidebar_Start_Collapsed", "no", "yes");
INSERT INTO `wpj1_options` VALUES("1063", "UPCP_Sidebar_Title_Hover", "none", "yes");
INSERT INTO `wpj1_options` VALUES("1064", "UPCP_Sidebar_Checkbox_Style", "none", "yes");
INSERT INTO `wpj1_options` VALUES("1065", "UPCP_Categories_Control_Type", "Checkbox", "yes");
INSERT INTO `wpj1_options` VALUES("1066", "UPCP_SubCategories_Control_Type", "Checkbox", "yes");
INSERT INTO `wpj1_options` VALUES("1067", "UPCP_Tags_Control_Type", "Checkbox", "yes");
INSERT INTO `wpj1_options` VALUES("1068", "UPCP_Sidebar_Items_Order", "a:7:{i:0;s:12:\"Product Sort\";i:1;s:14:\"Product Search\";i:2;s:12:\"Price Filter\";i:3;s:10:\"Categories\";i:4;s:14:\"Sub-Categories\";i:5;s:4:\"Tags\";i:6;s:13:\"Custom Fields\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1069", "UPCP_Installed_Skins", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1189", "UPCP_Compare_Button_Background_Color", "", "yes");
INSERT INTO `wpj1_options` VALUES("1071", "UPCP_Full_Version", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1072", "UPCP_Color_Scheme", "Blue", "yes");
INSERT INTO `wpj1_options` VALUES("1073", "UPCP_Product_Links", "Same", "yes");
INSERT INTO `wpj1_options` VALUES("1074", "UPCP_Tag_Logic", "AND", "yes");
INSERT INTO `wpj1_options` VALUES("1075", "UPCP_Read_More", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1076", "UPCP_Pretty_Links", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1077", "UPCP_Mobile_SS", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1078", "UPCP_Install_Flag", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1079", "UPCP_First_Install_Version", "3.6", "yes");
INSERT INTO `wpj1_options` VALUES("1080", "UPCP_Desc_Chars", "240", "yes");
INSERT INTO `wpj1_options` VALUES("1081", "UPCP_Case_Insensitive_Search", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1082", "UPCP_Run_Tutorial", "Yes", "yes");
INSERT INTO `wpj1_options` VALUES("1089", "widget_upcp_product_list_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1090", "widget_upcp_random_products_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1091", "widget_upcp_recent_products_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1092", "widget_upcp_popular_products_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1093", "widget_upcp_search_bar_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1094", "UPCP_Blog_Content", "<h3>Filter WooCommerce Products by Attribute!</h3>\r\n<p>Want visitors to easily search WooCommerce products by attributes, price, tags and more?</p>\r\n<p><a target=\'_blank\' href=\'http://www.etoilewebdesign.com/product-catalog-woocommerce-sync-tips/\'>Read our tips on making your products filterable with the Ultimate Product Catalog plugin!</a></p>", "yes");
INSERT INTO `wpj1_options` VALUES("1095", "UPCP_Dash_Cache", "1520033837", "yes");
INSERT INTO `wpj1_options` VALUES("1096", "UPCP_Hide_Dash_Review_Ask", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1097", "UPCP_Changelog_Content", "\r\n<h3>4.3.5</h3>\r\n<br />- Included an improved version of the Russian translation for the plugin\r\n<br />- Fixed an issue where some options would be reset when styling settings were updated\r\n<br />- Fixed an issue where \"Maintain Filtering\" wasn\'t working when an item in the breadcrumbs was clicked\r\n<br />- Fixed a Javascript 404 error\r\n\r\n<h3>4.3.4</h3>\r\n<br />- Added the option to change the order of sidebar items\r\n<br />- Product counts in the sidebar will automatically update based on the selections previously made (doesn\'t take into account text search)\r\n<br />- Added the ability to import/export the next/previous items for each product\r\n\r\n", "yes");
INSERT INTO `wpj1_options` VALUES("1098", "UPCP_Update_Flag", "No", "yes");
INSERT INTO `wpj1_options` VALUES("1847", "hotelier_booking_page_id", "53", "yes");
INSERT INTO `wpj1_options` VALUES("1839", "widget_hotelier-widget-booking", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1840", "widget_hotelier-widget-rooms-filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1841", "widget_hotelier-widget-room-search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1842", "widget_hotelier-widget-rooms", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1844", "_transient_hotelier_count_comments", "O:8:\"stdClass\":7:{s:8:\"approved\";s:1:\"1\";s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("1833", "hotelier_version", "1.5.1", "yes");
INSERT INTO `wpj1_options` VALUES("1987", "wpgmza_temp_api", "AIzaSyChPphumyabdfggISDNBuGOlGVBgEvZnGE", "yes");
INSERT INTO `wpj1_options` VALUES("1988", "wpgmza_xml_location", "{uploads_dir}/wp-google-maps/", "yes");
INSERT INTO `wpj1_options` VALUES("1989", "wpgmza_xml_url", "{uploads_url}/wp-google-maps/", "yes");
INSERT INTO `wpj1_options` VALUES("1990", "wpgmza_db_version", "6.4.11", "yes");
INSERT INTO `wpj1_options` VALUES("1991", "wpgmaps_current_version", "6.4.11", "yes");
INSERT INTO `wpj1_options` VALUES("1997", "widget_wpgmza_map_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1998", "WPGMZA_OTHER_SETTINGS", "a:1:{s:27:\"wpgmza_settings_marker_pull\";s:1:\"0\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1999", "WPGMZA_FIRST_TIME", "6.4.11", "yes");
INSERT INTO `wpj1_options` VALUES("2000", "wpgmza_stats", "a:3:{s:15:\"list_maps_basic\";a:3:{s:5:\"views\";i:5;s:13:\"last_accessed\";s:19:\"2018-03-22 20:52:46\";s:14:\"first_accessed\";s:19:\"2018-03-21 22:48:57\";}s:14:\"settings_basic\";a:3:{s:5:\"views\";i:1;s:13:\"last_accessed\";s:19:\"2018-03-21 23:21:49\";s:14:\"first_accessed\";s:19:\"2018-03-21 23:21:49\";}s:9:\"dashboard\";a:3:{s:5:\"views\";i:5;s:13:\"last_accessed\";s:19:\"2018-03-22 20:55:37\";s:14:\"first_accessed\";s:19:\"2018-03-21 23:22:11\";}}", "yes");
INSERT INTO `wpj1_options` VALUES("2002", "wpgmza_google_maps_api_key", "AIzaSyCAmlN1-ZA1xZeOj_ELLHXfkJwa1-p_qeM", "yes");
INSERT INTO `wpj1_options` VALUES("2011", "widget_srmgmap_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("2027", "_site_transient_timeout_browser_efc56fe28520bcd166ef136f44025003", "1522353725", "no");
INSERT INTO `wpj1_options` VALUES("2028", "_site_transient_browser_efc56fe28520bcd166ef136f44025003", "a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"65.0.3325.181\";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");
INSERT INTO `wpj1_options` VALUES("2029", "wpgmap_api_key", "AIzaSyCAmlN1-ZA1xZeOj_ELLHXfkJwa1-p_qeM", "yes");
INSERT INTO `wpj1_options` VALUES("1785", "wpbooking_checkout_page", "206535", "yes");
INSERT INTO `wpj1_options` VALUES("1786", "wpbooking_google_key_captcha", "", "yes");
INSERT INTO `wpj1_options` VALUES("1787", "wpbooking_google_secret_key_captcha", "", "yes");
INSERT INTO `wpj1_options` VALUES("1788", "wpbooking_allow_guest_checkout", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1789", "wpbooking_email_from", "WPBooking Plugin", "yes");
INSERT INTO `wpj1_options` VALUES("1790", "wpbooking_email_from_address", "admin@panbilresidence.com", "yes");
INSERT INTO `wpj1_options` VALUES("1791", "wpbooking_system_email", "", "yes");
INSERT INTO `wpj1_options` VALUES("1792", "wpbooking_on_booking_email_customer", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1793", "wpbooking_on_booking_email_admin", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1794", "wpbooking_on_registration_email_customer", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1795", "wpbooking_on_registration_email_admin", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1796", "wpbooking_email_header", "<div class=email-template>\r\n                                <div class=email-header>\r\n                                    <h2 class=email-title>WPBOOKING</h2>\r\n                                </div>", "yes");
INSERT INTO `wpj1_options` VALUES("1797", "wpbooking_email_footer", "<div class=email-footer>\r\n                                <a href=\"#\"><img src=\"http://panbilresidence.com/wp-content/plugins/wp-booking-management-system/assets/images/facebook.png\"/></a>\r\n                                <a href=\"#\"><img src=\"http://panbilresidence.com/wp-content/plugins/wp-booking-management-system/assets/images/twitter.png\"/></a>\r\n                                <a href=\"#\"><img src=\"http://panbilresidence.com/wp-content/plugins/wp-booking-management-system/assets/images/google.png\"/></a>\r\n                                <a href=\"#\"><img src=\"http://panbilresidence.com/wp-content/plugins/wp-booking-management-system/assets/images/linkedin.png\"/></a>\r\n                                <p>Copyright &copy; WP Booking. All rights reserved.</p>\r\n                            </div>\r\n                        </div>", "yes");
INSERT INTO `wpj1_options` VALUES("1798", "wpbooking_email_stylesheet", "    \r\n.color_black{\r\n    color:black;\r\n}\r\n.font_italic{\r\n    font-style:italic;\r\n}\r\n.completed{\r\n    border: 1px solid #669966;\r\n    color: #669966;\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n    padding: 3px 10px;\r\n    display: inline-block;\r\n    margin-top: -3px;\r\n}\r\n.failed{\r\n   border: 1px solid red;\r\n    color: red;\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n    padding: 3px 10px;  \r\n    display: inline-block;\r\n    margin-top: -3px;\r\n}\r\n.on_hold{\r\n     border: 1px solid #f0ad4e;\r\n    color: #f0ad4e;\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n    padding: 3px 10px;\r\n    display: inline-block;\r\n    margin-top: -3px;\r\n}\r\n.col-10{\r\n    float:left;\r\n    width:100%;\r\n} \r\n.col-5{\r\n    float:left;\r\n    width:50%;\r\n} \r\n.col-7{\r\n    float:left;\r\n    width:70%;\r\n} \r\n.col-3{\r\n    float:left;\r\n    width:30%;\r\n} \r\n.col-2{\r\n    float:left;\r\n    width:20%;\r\n} \r\n.float-right{\r\n    float:right;\r\n}\r\n.bold{\r\n    font-weight:bold;\r\n}\r\n.head-info{\r\n    margin-bottom:20px;   \r\n}\r\n.head-info-content-hl{\r\n     color: #f0ad4e;\r\n}\r\n.head-info-total-price{\r\n    text-align:right;\r\n    \r\n}\r\n.head-info-total-price .head-info-title{\r\n     color: #666666;\r\n    display: block;\r\n    font-size: 15px;\r\n    text-transform: uppercase;\r\n    font-weight:bold;\r\n}\r\n.head-info-total-price .head-info-content{\r\n    color: #333333;\r\n    display: block;\r\n    font-size: 24px;\r\n    font-weight: bold;\r\n}\r\n.content-row {\r\n	overflow:hidden;\r\n}\r\ntable{\r\n    width:100%;\r\n    font-size: 13px;\r\n}\r\nh3{\r\n    margin:0px;\r\n    padding:0px 0px 10px 0px;\r\n}\r\nh4{\r\n    margin:0px;\r\n    padding:0px 0px 10px 0px;\r\n}\r\n.room-image img{\r\n    width:50px;\r\n}\r\n.text-center{\r\n    text-align:center;\r\n}\r\n.service_info td{\r\n    vertical-align: top;\r\n}\r\ntable {\r\n    border-collapse: collapse;\r\n}\r\n\r\ntable, th, td {\r\n    border: 1px solid #ccc;\r\n}\r\n.extra-service{\r\n    margin-top:10px;\r\n}\r\n.btn_detail_checkout {\r\n    color: #f0ad4e;\r\n    font-size: 13px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-top: 20px;\r\n}\r\n.customer{\r\n    margin-top:30px;\r\n}\r\n.customer label{\r\n    font-weight: bold;\r\n}\r\n.btn_history{\r\n    background: #f0ad4e none repeat scroll 0 0;\r\n    border: 1px solid #ff9933 !important;\r\n    border-radius: 0;\r\n    color: white;\r\n    display: inline-block;\r\n    font-size: 15px;\r\n    font-weight: normal;\r\n    margin-bottom: 20px;\r\n    margin-top: 20px;\r\n    padding: 5px 20px;\r\n    text-decoration: none;\r\n    text-transform: none;\r\n}\r\n.color{\r\n    color:#f0ad4e;\r\n}\r\n.content-total{\r\n    width: 50%; float: right;\r\n}\r\n.total-title,.total-amount{\r\n    display: inline-block; width: 50%;\r\n    margin-bottom: 20px;\r\n}\r\n.total-amount{\r\n    float:right;\r\n}\r\n.total-title{\r\n    text-align:left;\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n.template {\r\n	background: #F1F1F1;\r\n	font-family: tahoma;\r\n	padding: 50px 0px;\r\n}\r\n\r\n.email-template {\r\n	width: 100%;\r\n	text-align: center;\r\n	background: #f2f2f2;\r\n}\r\n\r\n.email-header {\r\n	padding-top: 50px;\r\n	padding-bottom: 25px;\r\n}\r\n\r\n.email-header h2 {\r\n	font-size: 30px;\r\n}\r\n\r\n.email-footer {\r\n	padding-top: 50px;\r\n	padding-bottom: 60px;\r\n	font-size: 15px;\r\n	font-style: italic;\r\n	line-height: 25px;\r\n}\r\n\r\n.email-footer a {\r\n	margin-left: 10px;\r\n	margin-right: 10px;\r\n}\r\n\r\n.email-footer img {\r\n	width: 22px;\r\n	height: 22px;\r\n}\r\n\r\n.content {\r\n	background: white;\r\n	width: 600px;\r\n	margin: 0px auto;\r\n	border-radius: 4px;\r\n	padding: 20px;\r\n	padding: 20px 70px 50px;\r\n	border-radius: 0;\r\n	color: #000;\r\n	font-size: 15px;\r\n	text-align: left;\r\n	overflow:auto;\r\n}\r\n\r\n.header {\r\n	margin: -20px;\r\n	background: #0073aa;\r\n	padding: 15px 25px;\r\n	margin-bottom: 40px;\r\n}\r\n\r\n.header h1 {\r\n	color: red;\r\n	text-transform: uppercase;\r\n	font-size: 30px;\r\n}\r\n\r\n.footer {\r\n	margin: -20px;\r\n	background: #ECECEC;\r\n	padding: 5px 10px;\r\n	margin-top: 40px;\r\n	color: #737373;\r\n}\r\n\r\ntable, tr {\r\n	border-top: 1px solid #ccc;\r\n	border-left: 1px solid #ccc;\r\n	background: white;\r\n}\r\n\r\ntd, th {\r\n	border-right: 1px solid #ccc;\r\n	border-bottom: 1px solid #ccc;\r\n	\r\n	padding: 8px;\r\n}\r\n\r\n.review-cart-total:before,\r\n.review-cart-total:after {\r\n	display: table;\r\n\r\n}\r\n\r\n.review-cart-total:after {\r\n	clear: both;\r\n}\r\n\r\n.review-cart-total .total-title {\r\n	clear: both;\r\n	font-size: 14px;\r\n	float: left;\r\n	margin-top: 10px;\r\n}\r\n\r\n.review-cart-total .total-amount {\r\n	font-size: 14px;\r\n	color: #666666;\r\n	float: right;\r\n	margin-top: 10px;\r\n}\r\n\r\n.review-cart-total .total-amount.big {\r\n	font-size: 20px;\r\n	margin-top: 5px;\r\n}\r\n\r\n.review-cart-total .total-line {\r\n	clear: both;\r\n	height: 1px;\r\n	width: 100%;\r\n	background: #333;\r\n	margin: 10px 0px;\r\n	display: block;\r\n	margin-top: 15px;\r\n}\r\n\r\n.label {\r\n	display: inline;\r\n	padding: .2em .6em .3em;\r\n	font-size: 75%;\r\n	font-weight: bold;\r\n	line-height: 1;\r\n	color: #fff;\r\n	text-align: center;\r\n	white-space: nowrap;\r\n	vertical-align: baseline;\r\n	border-radius: .25em;\r\n}\r\n\r\na.label:hover, a.label:focus {\r\n	color: #fff;\r\n	text-decoration: none;\r\n	cursor: pointer;\r\n}\r\n\r\n.label:empty {\r\n	display: none;\r\n}\r\n\r\n.btn .label {\r\n	position: relative;\r\n	top: -1px;\r\n}\r\n\r\n.label-default {\r\n	background-color: #777;\r\n}\r\n\r\n.label-default[href]:hover, .label-default[href]:focus {\r\n	background-color: #5e5e5e;\r\n}\r\n\r\n.label-primary {\r\n	background-color: #337ab7;\r\n}\r\n\r\n.label-primary[href]:hover, .label-primary[href]:focus {\r\n	background-color: #286090;\r\n}\r\n\r\n.label-success {\r\n	background-color: #5cb85c;\r\n}\r\n\r\n.label-success[href]:hover, .label-success[href]:focus {\r\n	background-color: #449d44;\r\n}\r\n\r\n.label-info {\r\n	background-color: #5bc0de;\r\n}\r\n\r\n.label-info[href]:hover, .label-info[href]:focus {\r\n	background-color: #31b0d5;\r\n}\r\n\r\n.label-warning {\r\n	background-color: #f0ad4e;\r\n}\r\n\r\n.label-warning[href]:hover, .label-warning[href]:focus {\r\n	background-color: #ec971f;\r\n}\r\n\r\n.label-danger {\r\n	background-color: #d9534f;\r\n}\r\n\r\n.label-danger[href]:hover, .label-danger[href]:focus {\r\n	background-color: #c9302c;\r\n}\r\n\r\n/*email comment*/\r\n.title {\r\n	font-size: 28px;\r\n	margin-bottom: 17px;\r\n}\r\n\r\n.title-approved {\r\n	color: #6aa84f;\r\n	font-size: 28px;\r\n	margin-bottom: 17px;\r\n}\r\n\r\n.title-disapproved {\r\n	color: #cc4125;\r\n	font-size: 28px;\r\n	margin-bottom: 17px;\r\n}\r\n\r\n.content-header {\r\n	margin-bottom: 40px;\r\n	text-align: center;\r\n}\r\n\r\n.content-header p {\r\n	line-height: 25px;\r\n	font-style: italic;\r\n}\r\n\r\n.content-center {\r\n	background: #fafafa;\r\n	padding: 20px 15px;\r\n	text-align: center;\r\n	font-style: italic;\r\n}\r\n\r\n.content .content-center a {\r\n	color: #F0AD4E;\r\n}\r\n\r\n.content-center .icon {\r\n	font-size: 45px;\r\n	line-height: 1;\r\n}\r\n\r\n.content-center .comment {\r\n	margin-top: 0px;\r\n	margin-bottom: 22px;\r\n	font-style: italic;\r\n}\r\n\r\n.content-center .review {\r\n	font-style: italic;\r\n}\r\n\r\n.review-score {\r\n	display: table;\r\n	width: 50%;\r\n	list-style: none;\r\n	text-align: left;\r\n	margin: 0 auto;\r\n}\r\n\r\n.review-score li {\r\n	display: table-row;\r\n	line-height: 2;\r\n}\r\n\r\n.review-score li span {\r\n	display: table-cell;\r\n}\r\n\r\n.review-score li .score {\r\n	color: #F0AD4E;\r\n}\r\n\r\n.content-footer {\r\n	margin: 30px 30px 0;\r\n	text-align: center;\r\n}\r\n\r\n.content-footer .btn.btn-default {\r\n	padding: 15px;\r\n	background: #F0AD4E;\r\n	color: #FFF;\r\n	text-decoration: none;\r\n	display: inline-block;\r\n}\r\n\r\n.content-footer .comment_link {\r\n	display: block;\r\n	margin-top: 15px;\r\n	font-style: italic;\r\n}\r\n\r\n.content-footer .comment_link a {\r\n	color: #F0AD4E;\r\n}\r\n\r\n                                ", "yes");
INSERT INTO `wpj1_options` VALUES("1741", "wpbooking_currency", "a:6:{s:8:\"currency\";s:3:\"IDR\";s:6:\"symbol\";s:4:\"Rp. \";s:8:\"position\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:7:\"decimal\";s:1:\"2\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1742", "wpbooking_archive-page", "206532", "yes");
INSERT INTO `wpj1_options` VALUES("1743", "wpbooking_term-page", "206533", "yes");
INSERT INTO `wpj1_options` VALUES("1744", "wpbooking_myaccount-page", "206534", "yes");
INSERT INTO `wpj1_options` VALUES("1751", "wpbooking_amenity_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1746", "tax_meta_32", "a:1:{s:14:\"wpbooking_icon\";s:9:\"fa-safari\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1748", "tax_meta_33", "a:1:{s:14:\"wpbooking_icon\";s:12:\"fa-briefcase\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1750", "tax_meta_34", "a:1:{s:14:\"wpbooking_icon\";s:7:\"fa-wifi\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1752", "tax_meta_35", "a:1:{s:14:\"wpbooking_icon\";s:5:\"fa-tv\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1759", "wb_hotel_room_facilities_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1754", "tax_meta_36", "a:1:{s:14:\"wpbooking_icon\";s:10:\"fa-clock-o\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1756", "tax_meta_37", "a:1:{s:14:\"wpbooking_icon\";s:15:\"fa-object-group\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1758", "tax_meta_38", "a:1:{s:14:\"wpbooking_icon\";s:14:\"fa-tripadvisor\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1760", "tax_meta_39", "a:1:{s:14:\"wpbooking_icon\";s:9:\"fa-laptop\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1771", "wpbooking_location_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1762", "tax_meta_40", "a:2:{s:23:\"min_price_accommodation\";N;s:14:\"min_price_tour\";N;}", "yes");
INSERT INTO `wpj1_options` VALUES("1764", "tax_meta_41", "a:2:{s:23:\"min_price_accommodation\";N;s:14:\"min_price_tour\";N;}", "yes");
INSERT INTO `wpj1_options` VALUES("1766", "tax_meta_42", "a:2:{s:23:\"min_price_accommodation\";N;s:14:\"min_price_tour\";N;}", "yes");
INSERT INTO `wpj1_options` VALUES("1768", "tax_meta_43", "a:2:{s:23:\"min_price_accommodation\";N;s:14:\"min_price_tour\";N;}", "yes");
INSERT INTO `wpj1_options` VALUES("1770", "tax_meta_44", "a:2:{s:23:\"min_price_accommodation\";N;s:14:\"min_price_tour\";N;}", "yes");
INSERT INTO `wpj1_options` VALUES("1774", "wb_tour_type_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1784", "wb_hotel_room_type_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1822", "awebooking_version", "3.0.6", "yes");
INSERT INTO `wpj1_options` VALUES("1823", "awebooking_db_version", "3.0.6", "yes");
INSERT INTO `wpj1_options` VALUES("1352", "widget_epl_recent_property", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1353", "widget_epl_property_gallery", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1298", "widget_wpl_search_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1299", "widget_wpl_carousel_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1300", "widget_wpl_agents_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1301", "widget_wpl_googlemap_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1329", "property_city_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("1354", "widget_epl_property_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1355", "widget_epl_contact_capture", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1356", "epl_rewrite_rules", "", "yes");
INSERT INTO `wpj1_options` VALUES("1799", "wpbooking_email_to_customer", "\r\n<div class=content>\r\n    <h2> Hello [name_customer]!</h2>\r\n    <h2> Your booking status is [order_status]</h2>\r\n    <span class=font_italic> Below is your booking information</span>\r\n    <br><br><br><br>\r\n    <div class=content-row>\r\n        <div class=col-7>\r\n            <div class=head-info>\r\n                <span class=head-info-title>Booking code:</span>\r\n                <span class=head-info-content-hl>[order_id]</span>\r\n            </div>\r\n            <div class=head-info>\r\n                <span class=head-info-title>Method of Payment:</span>\r\n                <span class=head-info-content >[order_payment_gateway]</span>\r\n            </div>\r\n        </div>\r\n        <div class=col-3>\r\n            <div class=head-info-total-price>\r\n                <span class=head-info-title>Total</span>\r\n                <br>\r\n                <span class=head-info-content>[order_total]</span>\r\n            </div>\r\n        </div>\r\n    </div>\r\n    <h2> YOUR BOOKING INFORMATION </h2>\r\n    <div>[order_table]</div>\r\n    <div class=customer>\r\n        <div class=title>\r\n            <h5>CUSTOMER INFORMATION:</h5>\r\n        </div>\r\n        [checkout_info]\r\n    </div>\r\n</div>", "yes");
INSERT INTO `wpj1_options` VALUES("1800", "wpbooking_email_to_admin", "\r\n<div class=content>\r\n    <h2> Hello Admin!</h2>\r\n<h4>[name_customer] have just booked a room on your System. </h4>\r\n <span class=font_italic>Below is booking information:</span><br><br><br><br>\r\n    <div class=content-row>\r\n        <div class=col-7>\r\n            <div class=head-info>\r\n                <span class=head-info-title>Booking code:</span>\r\n                <span class=head-info-content-hl>[order_id]</span>\r\n            </div>\r\n            <div class=head-info>\r\n                <span class=head-info-title>Method of Payment:</span>\r\n                <span class=head-info-content >[order_payment_gateway]</span>\r\n            </div>\r\n        </div>\r\n        <div class=col-3>\r\n            <div class=head-info-total-price>\r\n                <span class=head-info-title>Total</span>\r\n                <br>\r\n                <span class=head-info-content>[order_total]</span>\r\n            </div>\r\n        </div>\r\n    </div>\r\n    <h2>BOOKING INFORMATION </h2>\r\n    <div>[order_table]</div>\r\n    <div class=customer>\r\n        <div class=title>\r\n           <h5>CUSTOMER INFORMATION:</h5>\r\n        </div>\r\n        [checkout_info]\r\n    </div>\r\n</div>", "yes");
INSERT INTO `wpj1_options` VALUES("1801", "wpbooking_registration_email_customer", "\r\n<div class=content>\r\n    <div class=content-header>\r\n       <h3 class=title-approved >Registration Successful<h1>\r\n       <p class=description>Hello <strong>[user_login]</strong>, Thank you for registration.<br>Here are your account information:</p>\r\n     </div>\r\n     <div class=content-center>\r\n         Username: <strong>[user_login]</strong><br><br>\r\n         Password: [user_pass]<br><br>\r\n         Email: [user_email]<br><br>\r\n         Profile URL: [profile_url]<br><br>\r\n     </div>\r\n</div>", "yes");
INSERT INTO `wpj1_options` VALUES("1802", "wpbooking_registration_email_admin", "<div class=content>\r\n                                    <div class=content-header>\r\n                                       <h3 class=title >New Registration<h1>\r\n                                       <p class=description>Hello <strong>Administrator</strong>, There is a new user on your system.<br>Here are his(her) account information:</p>\r\n                                     </div>\r\n                                     <div class=content-center>\r\n                                         Username: <strong>[user_login]</strong><br><br>\r\n                                         Email: [user_email]<br><br>\r\n                                         Edit User URL: [edit_user_url]<br><br>\r\n                                     </div>\r\n                                </div>", "yes");
INSERT INTO `wpj1_options` VALUES("1803", "wpbooking_gateway_submit_form_enable", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1804", "wpbooking_gateway_submit_form_title", "Submit Form", "yes");
INSERT INTO `wpj1_options` VALUES("1805", "wpbooking_gateway_submit_form_desc", "Submit Form", "yes");
INSERT INTO `wpj1_options` VALUES("1806", "wpbooking_gateway_paypal_enable", "0", "yes");
INSERT INTO `wpj1_options` VALUES("1807", "wpbooking_gateway_paypal_title", "PayPal", "yes");
INSERT INTO `wpj1_options` VALUES("1808", "wpbooking_gateway_paypal_desc", "You will be redirect to paypal website to finish the payment process", "yes");
INSERT INTO `wpj1_options` VALUES("1809", "wpbooking_setup_demo", "false", "yes");
INSERT INTO `wpj1_options` VALUES("1845", "hotelier_settings", "a:24:{i:0;s:0:\"\";s:11:\"hotel_email\";s:25:\"admin@panbilresidence.com\";s:13:\"hotel_checkin\";a:2:{s:4:\"from\";s:2:\"12\";s:2:\"to\";s:2:\"21\";}s:14:\"hotel_checkout\";a:2:{s:4:\"from\";s:1:\"8\";s:2:\"to\";s:2:\"13\";}s:18:\"hotel_pets_message\";s:16:\"Pets are allowed\";s:12:\"listing_page\";s:2:\"53\";s:12:\"booking_page\";s:2:\"53\";s:20:\"reservation_received\";s:20:\"reservation-received\";s:12:\"pay_endpoint\";s:15:\"pay-reservation\";s:8:\"currency\";s:3:\"USD\";s:17:\"currency_position\";s:6:\"before\";s:19:\"thousands_separator\";s:1:\",\";s:17:\"decimal_separator\";s:1:\".\";s:18:\"price_num_decimals\";i:2;s:10:\"hotel_name\";s:0:\"\";s:13:\"hotel_address\";s:0:\"\";s:14:\"hotel_postcode\";s:0:\"\";s:14:\"hotel_locality\";s:0:\"\";s:15:\"hotel_telephone\";s:0:\"\";s:9:\"hotel_fax\";s:0:\"\";s:10:\"terms_page\";s:0:\"\";s:10:\"hotel_pets\";i:0;s:19:\"enforce_ssl_booking\";i:0;s:19:\"unforce_ssl_booking\";i:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("1846", "hotelier_listing_page_id", "53", "yes");
INSERT INTO `wpj1_options` VALUES("1855", "_transient_timeout_hotelier_room_ids", "1523897581", "no");
INSERT INTO `wpj1_options` VALUES("1856", "_transient_hotelier_room_ids", "a:0:{}", "no");
INSERT INTO `wpj1_options` VALUES("1854", "_transient_hotelier_cache_excluded_uris", "a:4:{i:0;s:4:\"p=53\";i:1;s:11:\"/apartment/\";i:2;s:4:\"p=53\";i:3;s:11:\"/apartment/\";}", "yes");
INSERT INTO `wpj1_options` VALUES("2121", "megamenu_themes", "a:2:{s:14:\"custom_theme_1\";a:191:{s:5:\"title\";s:8:\"Custom 1\";s:8:\"arrow_up\";s:9:\"dash-f142\";s:10:\"arrow_down\";s:9:\"dash-f140\";s:10:\"arrow_left\";s:9:\"dash-f141\";s:11:\"arrow_right\";s:9:\"dash-f139\";s:11:\"line_height\";s:3:\"1.7\";s:7:\"z_index\";s:3:\"999\";s:17:\"shadow_horizontal\";s:3:\"0px\";s:15:\"shadow_vertical\";s:3:\"0px\";s:11:\"shadow_blur\";s:3:\"5px\";s:13:\"shadow_spread\";s:3:\"0px\";s:12:\"shadow_color\";s:18:\"rgba(0, 0, 0, 0.1)\";s:21:\"menu_item_link_height\";s:4:\"40px\";s:25:\"container_background_from\";s:4:\"#222\";s:23:\"container_background_to\";s:4:\"#222\";s:21:\"container_padding_top\";s:3:\"0px\";s:23:\"container_padding_right\";s:3:\"0px\";s:24:\"container_padding_bottom\";s:3:\"0px\";s:22:\"container_padding_left\";s:3:\"0px\";s:32:\"container_border_radius_top_left\";s:3:\"0px\";s:33:\"container_border_radius_top_right\";s:3:\"0px\";s:36:\"container_border_radius_bottom_right\";s:3:\"0px\";s:35:\"container_border_radius_bottom_left\";s:3:\"0px\";s:15:\"menu_item_align\";s:4:\"left\";s:25:\"menu_item_background_from\";s:15:\"rgb(34, 34, 34)\";s:23:\"menu_item_background_to\";s:15:\"rgb(34, 34, 34)\";s:31:\"menu_item_background_hover_from\";s:4:\"#333\";s:29:\"menu_item_background_hover_to\";s:4:\"#333\";s:17:\"menu_item_spacing\";s:3:\"0px\";s:20:\"menu_item_link_color\";s:7:\"#ffffff\";s:24:\"menu_item_link_font_size\";s:4:\"14px\";s:19:\"menu_item_link_font\";s:7:\"inherit\";s:29:\"menu_item_link_text_transform\";s:4:\"none\";s:21:\"menu_item_link_weight\";s:6:\"normal\";s:30:\"menu_item_link_text_decoration\";s:4:\"none\";s:25:\"menu_item_link_text_align\";s:4:\"left\";s:26:\"menu_item_link_color_hover\";s:7:\"#ffffff\";s:27:\"menu_item_link_weight_hover\";s:6:\"normal\";s:36:\"menu_item_link_text_decoration_hover\";s:4:\"none\";s:26:\"menu_item_link_padding_top\";s:3:\"0px\";s:28:\"menu_item_link_padding_right\";s:4:\"10px\";s:29:\"menu_item_link_padding_bottom\";s:3:\"0px\";s:27:\"menu_item_link_padding_left\";s:4:\"10px\";s:22:\"menu_item_border_color\";s:4:\"#fff\";s:20:\"menu_item_border_top\";s:3:\"0px\";s:22:\"menu_item_border_right\";s:3:\"0px\";s:23:\"menu_item_border_bottom\";s:3:\"0px\";s:21:\"menu_item_border_left\";s:3:\"0px\";s:28:\"menu_item_border_color_hover\";s:4:\"#fff\";s:37:\"menu_item_link_border_radius_top_left\";s:3:\"0px\";s:38:\"menu_item_link_border_radius_top_right\";s:3:\"0px\";s:41:\"menu_item_link_border_radius_bottom_right\";s:3:\"0px\";s:40:\"menu_item_link_border_radius_bottom_left\";s:3:\"0px\";s:23:\"menu_item_divider_color\";s:24:\"rgba(255, 255, 255, 0.1)\";s:30:\"menu_item_divider_glow_opacity\";s:3:\"0.1\";s:27:\"menu_item_highlight_current\";s:2:\"on\";s:21:\"panel_background_from\";s:17:\"rgb(212, 175, 55)\";s:19:\"panel_background_to\";s:17:\"rgb(212, 175, 55)\";s:11:\"panel_width\";s:4:\"100%\";s:17:\"panel_inner_width\";s:4:\"100%\";s:17:\"panel_padding_top\";s:3:\"0px\";s:19:\"panel_padding_right\";s:3:\"0px\";s:20:\"panel_padding_bottom\";s:3:\"0px\";s:18:\"panel_padding_left\";s:3:\"0px\";s:18:\"panel_border_color\";s:4:\"#fff\";s:16:\"panel_border_top\";s:3:\"0px\";s:18:\"panel_border_right\";s:3:\"0px\";s:19:\"panel_border_bottom\";s:3:\"0px\";s:17:\"panel_border_left\";s:3:\"0px\";s:28:\"panel_border_radius_top_left\";s:3:\"0px\";s:29:\"panel_border_radius_top_right\";s:3:\"0px\";s:32:\"panel_border_radius_bottom_right\";s:3:\"0px\";s:31:\"panel_border_radius_bottom_left\";s:3:\"0px\";s:24:\"panel_widget_padding_top\";s:4:\"15px\";s:26:\"panel_widget_padding_right\";s:4:\"15px\";s:27:\"panel_widget_padding_bottom\";s:4:\"15px\";s:25:\"panel_widget_padding_left\";s:4:\"15px\";s:18:\"panel_header_color\";s:4:\"#555\";s:22:\"panel_header_font_size\";s:4:\"16px\";s:17:\"panel_header_font\";s:7:\"inherit\";s:27:\"panel_header_text_transform\";s:9:\"uppercase\";s:24:\"panel_header_font_weight\";s:4:\"bold\";s:28:\"panel_header_text_decoration\";s:4:\"none\";s:24:\"panel_header_padding_top\";s:3:\"0px\";s:26:\"panel_header_padding_right\";s:3:\"0px\";s:27:\"panel_header_padding_bottom\";s:3:\"5px\";s:25:\"panel_header_padding_left\";s:3:\"0px\";s:23:\"panel_header_margin_top\";s:3:\"0px\";s:25:\"panel_header_margin_right\";s:3:\"0px\";s:26:\"panel_header_margin_bottom\";s:3:\"0px\";s:24:\"panel_header_margin_left\";s:3:\"0px\";s:25:\"panel_header_border_color\";s:4:\"#555\";s:23:\"panel_header_border_top\";s:3:\"0px\";s:25:\"panel_header_border_right\";s:3:\"0px\";s:26:\"panel_header_border_bottom\";s:3:\"0px\";s:24:\"panel_header_border_left\";s:3:\"0px\";s:16:\"panel_font_color\";s:4:\"#666\";s:15:\"panel_font_size\";s:4:\"14px\";s:17:\"panel_font_family\";s:7:\"inherit\";s:29:\"panel_second_level_font_color\";s:4:\"#555\";s:28:\"panel_second_level_font_size\";s:4:\"16px\";s:23:\"panel_second_level_font\";s:7:\"inherit\";s:33:\"panel_second_level_text_transform\";s:9:\"uppercase\";s:30:\"panel_second_level_font_weight\";s:4:\"bold\";s:34:\"panel_second_level_text_decoration\";s:4:\"none\";s:35:\"panel_second_level_font_color_hover\";s:4:\"#555\";s:36:\"panel_second_level_font_weight_hover\";s:4:\"bold\";s:40:\"panel_second_level_text_decoration_hover\";s:4:\"none\";s:40:\"panel_second_level_background_hover_from\";s:13:\"rgba(0,0,0,0)\";s:38:\"panel_second_level_background_hover_to\";s:13:\"rgba(0,0,0,0)\";s:30:\"panel_second_level_padding_top\";s:3:\"0px\";s:32:\"panel_second_level_padding_right\";s:3:\"0px\";s:33:\"panel_second_level_padding_bottom\";s:3:\"0px\";s:31:\"panel_second_level_padding_left\";s:3:\"0px\";s:29:\"panel_second_level_margin_top\";s:3:\"0px\";s:31:\"panel_second_level_margin_right\";s:3:\"0px\";s:32:\"panel_second_level_margin_bottom\";s:3:\"0px\";s:30:\"panel_second_level_margin_left\";s:3:\"0px\";s:31:\"panel_second_level_border_color\";s:4:\"#555\";s:29:\"panel_second_level_border_top\";s:3:\"0px\";s:31:\"panel_second_level_border_right\";s:3:\"0px\";s:32:\"panel_second_level_border_bottom\";s:3:\"0px\";s:30:\"panel_second_level_border_left\";s:3:\"0px\";s:28:\"panel_third_level_font_color\";s:4:\"#666\";s:27:\"panel_third_level_font_size\";s:4:\"14px\";s:22:\"panel_third_level_font\";s:7:\"inherit\";s:32:\"panel_third_level_text_transform\";s:4:\"none\";s:29:\"panel_third_level_font_weight\";s:6:\"normal\";s:33:\"panel_third_level_text_decoration\";s:4:\"none\";s:34:\"panel_third_level_font_color_hover\";s:4:\"#666\";s:35:\"panel_third_level_font_weight_hover\";s:6:\"normal\";s:39:\"panel_third_level_text_decoration_hover\";s:4:\"none\";s:39:\"panel_third_level_background_hover_from\";s:13:\"rgba(0,0,0,0)\";s:37:\"panel_third_level_background_hover_to\";s:13:\"rgba(0,0,0,0)\";s:29:\"panel_third_level_padding_top\";s:3:\"0px\";s:31:\"panel_third_level_padding_right\";s:3:\"0px\";s:32:\"panel_third_level_padding_bottom\";s:3:\"0px\";s:30:\"panel_third_level_padding_left\";s:3:\"0px\";s:27:\"flyout_menu_background_from\";s:7:\"#f1f1f1\";s:25:\"flyout_menu_background_to\";s:7:\"#f1f1f1\";s:12:\"flyout_width\";s:5:\"150px\";s:18:\"flyout_padding_top\";s:3:\"0px\";s:20:\"flyout_padding_right\";s:3:\"0px\";s:21:\"flyout_padding_bottom\";s:3:\"0px\";s:19:\"flyout_padding_left\";s:3:\"0px\";s:19:\"flyout_border_color\";s:7:\"#ffffff\";s:17:\"flyout_border_top\";s:3:\"0px\";s:19:\"flyout_border_right\";s:3:\"0px\";s:20:\"flyout_border_bottom\";s:3:\"0px\";s:18:\"flyout_border_left\";s:3:\"0px\";s:29:\"flyout_border_radius_top_left\";s:3:\"0px\";s:30:\"flyout_border_radius_top_right\";s:3:\"0px\";s:33:\"flyout_border_radius_bottom_right\";s:3:\"0px\";s:32:\"flyout_border_radius_bottom_left\";s:3:\"0px\";s:22:\"flyout_background_from\";s:7:\"#f1f1f1\";s:20:\"flyout_background_to\";s:7:\"#f1f1f1\";s:28:\"flyout_background_hover_from\";s:7:\"#dddddd\";s:26:\"flyout_background_hover_to\";s:7:\"#dddddd\";s:18:\"flyout_link_height\";s:4:\"35px\";s:23:\"flyout_link_padding_top\";s:3:\"0px\";s:25:\"flyout_link_padding_right\";s:4:\"10px\";s:26:\"flyout_link_padding_bottom\";s:3:\"0px\";s:24:\"flyout_link_padding_left\";s:4:\"10px\";s:17:\"flyout_link_color\";s:4:\"#666\";s:16:\"flyout_link_size\";s:4:\"14px\";s:18:\"flyout_link_family\";s:7:\"inherit\";s:26:\"flyout_link_text_transform\";s:4:\"none\";s:18:\"flyout_link_weight\";s:6:\"normal\";s:27:\"flyout_link_text_decoration\";s:4:\"none\";s:23:\"flyout_link_color_hover\";s:4:\"#666\";s:24:\"flyout_link_weight_hover\";s:6:\"normal\";s:33:\"flyout_link_text_decoration_hover\";s:4:\"none\";s:30:\"flyout_menu_item_divider_color\";s:24:\"rgba(255, 255, 255, 0.1)\";s:21:\"responsive_breakpoint\";s:5:\"600px\";s:22:\"toggle_background_from\";s:4:\"#222\";s:20:\"toggle_background_to\";s:4:\"#222\";s:17:\"toggle_bar_height\";s:4:\"40px\";s:14:\"mobile_columns\";s:1:\"2\";s:22:\"mobile_background_from\";s:4:\"#222\";s:20:\"mobile_background_to\";s:4:\"#222\";s:23:\"mobile_menu_item_height\";s:4:\"40px\";s:27:\"mobile_menu_item_link_color\";s:7:\"#ffffff\";s:31:\"mobile_menu_item_link_font_size\";s:4:\"14px\";s:32:\"mobile_menu_item_link_text_align\";s:4:\"left\";s:10:\"custom_css\";s:67:\"/** Push menu onto new line **/ \r\n#{$wrap} { \r\n    clear: both; \r\n}\";s:6:\"shadow\";s:3:\"off\";s:11:\"transitions\";s:3:\"off\";s:6:\"resets\";s:3:\"off\";s:17:\"menu_item_divider\";s:3:\"off\";s:24:\"flyout_menu_item_divider\";s:3:\"off\";s:21:\"disable_mobile_toggle\";s:3:\"off\";}s:7:\"default\";a:191:{s:5:\"title\";s:7:\"Default\";s:8:\"arrow_up\";s:9:\"dash-f142\";s:10:\"arrow_down\";s:9:\"dash-f140\";s:10:\"arrow_left\";s:9:\"dash-f141\";s:11:\"arrow_right\";s:9:\"dash-f139\";s:11:\"line_height\";s:3:\"1.7\";s:7:\"z_index\";s:3:\"999\";s:17:\"shadow_horizontal\";s:3:\"0px\";s:15:\"shadow_vertical\";s:3:\"0px\";s:11:\"shadow_blur\";s:3:\"5px\";s:13:\"shadow_spread\";s:3:\"0px\";s:12:\"shadow_color\";s:18:\"rgba(0, 0, 0, 0.1)\";s:21:\"menu_item_link_height\";s:4:\"40px\";s:25:\"container_background_from\";s:17:\"rgb(212, 175, 55)\";s:23:\"container_background_to\";s:17:\"rgb(212, 175, 55)\";s:21:\"container_padding_top\";s:3:\"0px\";s:23:\"container_padding_right\";s:3:\"0px\";s:24:\"container_padding_bottom\";s:3:\"0px\";s:22:\"container_padding_left\";s:3:\"0px\";s:32:\"container_border_radius_top_left\";s:3:\"0px\";s:33:\"container_border_radius_top_right\";s:3:\"0px\";s:36:\"container_border_radius_bottom_right\";s:3:\"0px\";s:35:\"container_border_radius_bottom_left\";s:3:\"0px\";s:15:\"menu_item_align\";s:4:\"left\";s:25:\"menu_item_background_from\";s:13:\"rgba(0,0,0,0)\";s:23:\"menu_item_background_to\";s:13:\"rgba(0,0,0,0)\";s:31:\"menu_item_background_hover_from\";s:24:\"rgba(255, 255, 255, 0.1)\";s:29:\"menu_item_background_hover_to\";s:24:\"rgba(255, 255, 255, 0.1)\";s:17:\"menu_item_spacing\";s:5:\"100px\";s:20:\"menu_item_link_color\";s:7:\"#ffffff\";s:24:\"menu_item_link_font_size\";s:4:\"14px\";s:19:\"menu_item_link_font\";s:7:\"inherit\";s:29:\"menu_item_link_text_transform\";s:4:\"none\";s:21:\"menu_item_link_weight\";s:6:\"normal\";s:30:\"menu_item_link_text_decoration\";s:4:\"none\";s:25:\"menu_item_link_text_align\";s:4:\"left\";s:26:\"menu_item_link_color_hover\";s:7:\"#ffffff\";s:27:\"menu_item_link_weight_hover\";s:6:\"normal\";s:36:\"menu_item_link_text_decoration_hover\";s:4:\"none\";s:26:\"menu_item_link_padding_top\";s:3:\"0px\";s:28:\"menu_item_link_padding_right\";s:4:\"10px\";s:29:\"menu_item_link_padding_bottom\";s:3:\"0px\";s:27:\"menu_item_link_padding_left\";s:4:\"10px\";s:22:\"menu_item_border_color\";s:4:\"#fff\";s:20:\"menu_item_border_top\";s:3:\"0px\";s:22:\"menu_item_border_right\";s:3:\"0px\";s:23:\"menu_item_border_bottom\";s:3:\"0px\";s:21:\"menu_item_border_left\";s:3:\"0px\";s:28:\"menu_item_border_color_hover\";s:4:\"#fff\";s:37:\"menu_item_link_border_radius_top_left\";s:3:\"0px\";s:38:\"menu_item_link_border_radius_top_right\";s:3:\"0px\";s:41:\"menu_item_link_border_radius_bottom_right\";s:3:\"0px\";s:40:\"menu_item_link_border_radius_bottom_left\";s:3:\"0px\";s:23:\"menu_item_divider_color\";s:24:\"rgba(255, 255, 255, 0.1)\";s:30:\"menu_item_divider_glow_opacity\";s:3:\"0.1\";s:27:\"menu_item_highlight_current\";s:2:\"on\";s:21:\"panel_background_from\";s:18:\"rgb(233, 206, 118)\";s:19:\"panel_background_to\";s:18:\"rgb(233, 206, 118)\";s:11:\"panel_width\";s:4:\"100%\";s:17:\"panel_inner_width\";s:4:\"100%\";s:17:\"panel_padding_top\";s:3:\"0px\";s:19:\"panel_padding_right\";s:3:\"0px\";s:20:\"panel_padding_bottom\";s:3:\"0px\";s:18:\"panel_padding_left\";s:3:\"0px\";s:18:\"panel_border_color\";s:4:\"#fff\";s:16:\"panel_border_top\";s:3:\"0px\";s:18:\"panel_border_right\";s:3:\"0px\";s:19:\"panel_border_bottom\";s:3:\"0px\";s:17:\"panel_border_left\";s:3:\"0px\";s:28:\"panel_border_radius_top_left\";s:3:\"0px\";s:29:\"panel_border_radius_top_right\";s:3:\"0px\";s:32:\"panel_border_radius_bottom_right\";s:3:\"0px\";s:31:\"panel_border_radius_bottom_left\";s:3:\"0px\";s:24:\"panel_widget_padding_top\";s:4:\"15px\";s:26:\"panel_widget_padding_right\";s:4:\"15px\";s:27:\"panel_widget_padding_bottom\";s:4:\"15px\";s:25:\"panel_widget_padding_left\";s:4:\"15px\";s:18:\"panel_header_color\";s:4:\"#555\";s:22:\"panel_header_font_size\";s:4:\"16px\";s:17:\"panel_header_font\";s:7:\"inherit\";s:27:\"panel_header_text_transform\";s:9:\"uppercase\";s:24:\"panel_header_font_weight\";s:4:\"bold\";s:28:\"panel_header_text_decoration\";s:4:\"none\";s:24:\"panel_header_padding_top\";s:3:\"0px\";s:26:\"panel_header_padding_right\";s:3:\"0px\";s:27:\"panel_header_padding_bottom\";s:3:\"5px\";s:25:\"panel_header_padding_left\";s:3:\"0px\";s:23:\"panel_header_margin_top\";s:3:\"0px\";s:25:\"panel_header_margin_right\";s:3:\"0px\";s:26:\"panel_header_margin_bottom\";s:3:\"0px\";s:24:\"panel_header_margin_left\";s:3:\"0px\";s:25:\"panel_header_border_color\";s:4:\"#555\";s:23:\"panel_header_border_top\";s:3:\"0px\";s:25:\"panel_header_border_right\";s:3:\"0px\";s:26:\"panel_header_border_bottom\";s:3:\"0px\";s:24:\"panel_header_border_left\";s:3:\"0px\";s:16:\"panel_font_color\";s:4:\"#666\";s:15:\"panel_font_size\";s:4:\"14px\";s:17:\"panel_font_family\";s:7:\"inherit\";s:29:\"panel_second_level_font_color\";s:4:\"#555\";s:28:\"panel_second_level_font_size\";s:4:\"16px\";s:23:\"panel_second_level_font\";s:7:\"inherit\";s:33:\"panel_second_level_text_transform\";s:9:\"uppercase\";s:30:\"panel_second_level_font_weight\";s:4:\"bold\";s:34:\"panel_second_level_text_decoration\";s:4:\"none\";s:35:\"panel_second_level_font_color_hover\";s:4:\"#555\";s:36:\"panel_second_level_font_weight_hover\";s:4:\"bold\";s:40:\"panel_second_level_text_decoration_hover\";s:4:\"none\";s:40:\"panel_second_level_background_hover_from\";s:13:\"rgba(0,0,0,0)\";s:38:\"panel_second_level_background_hover_to\";s:13:\"rgba(0,0,0,0)\";s:30:\"panel_second_level_padding_top\";s:3:\"0px\";s:32:\"panel_second_level_padding_right\";s:3:\"0px\";s:33:\"panel_second_level_padding_bottom\";s:3:\"0px\";s:31:\"panel_second_level_padding_left\";s:3:\"0px\";s:29:\"panel_second_level_margin_top\";s:3:\"0px\";s:31:\"panel_second_level_margin_right\";s:3:\"0px\";s:32:\"panel_second_level_margin_bottom\";s:3:\"0px\";s:30:\"panel_second_level_margin_left\";s:3:\"0px\";s:31:\"panel_second_level_border_color\";s:4:\"#555\";s:29:\"panel_second_level_border_top\";s:3:\"0px\";s:31:\"panel_second_level_border_right\";s:3:\"0px\";s:32:\"panel_second_level_border_bottom\";s:3:\"0px\";s:30:\"panel_second_level_border_left\";s:3:\"0px\";s:28:\"panel_third_level_font_color\";s:4:\"#666\";s:27:\"panel_third_level_font_size\";s:4:\"14px\";s:22:\"panel_third_level_font\";s:7:\"inherit\";s:32:\"panel_third_level_text_transform\";s:4:\"none\";s:29:\"panel_third_level_font_weight\";s:6:\"normal\";s:33:\"panel_third_level_text_decoration\";s:4:\"none\";s:34:\"panel_third_level_font_color_hover\";s:4:\"#666\";s:35:\"panel_third_level_font_weight_hover\";s:6:\"normal\";s:39:\"panel_third_level_text_decoration_hover\";s:4:\"none\";s:39:\"panel_third_level_background_hover_from\";s:13:\"rgba(0,0,0,0)\";s:37:\"panel_third_level_background_hover_to\";s:13:\"rgba(0,0,0,0)\";s:29:\"panel_third_level_padding_top\";s:3:\"0px\";s:31:\"panel_third_level_padding_right\";s:3:\"0px\";s:32:\"panel_third_level_padding_bottom\";s:3:\"0px\";s:30:\"panel_third_level_padding_left\";s:3:\"0px\";s:27:\"flyout_menu_background_from\";s:7:\"#f1f1f1\";s:25:\"flyout_menu_background_to\";s:7:\"#f1f1f1\";s:12:\"flyout_width\";s:5:\"150px\";s:18:\"flyout_padding_top\";s:3:\"0px\";s:20:\"flyout_padding_right\";s:3:\"0px\";s:21:\"flyout_padding_bottom\";s:3:\"0px\";s:19:\"flyout_padding_left\";s:3:\"0px\";s:19:\"flyout_border_color\";s:7:\"#ffffff\";s:17:\"flyout_border_top\";s:3:\"0px\";s:19:\"flyout_border_right\";s:3:\"0px\";s:20:\"flyout_border_bottom\";s:3:\"0px\";s:18:\"flyout_border_left\";s:3:\"0px\";s:29:\"flyout_border_radius_top_left\";s:3:\"0px\";s:30:\"flyout_border_radius_top_right\";s:3:\"0px\";s:33:\"flyout_border_radius_bottom_right\";s:3:\"0px\";s:32:\"flyout_border_radius_bottom_left\";s:3:\"0px\";s:22:\"flyout_background_from\";s:7:\"#f1f1f1\";s:20:\"flyout_background_to\";s:7:\"#f1f1f1\";s:28:\"flyout_background_hover_from\";s:7:\"#dddddd\";s:26:\"flyout_background_hover_to\";s:7:\"#dddddd\";s:18:\"flyout_link_height\";s:4:\"35px\";s:23:\"flyout_link_padding_top\";s:3:\"0px\";s:25:\"flyout_link_padding_right\";s:4:\"10px\";s:26:\"flyout_link_padding_bottom\";s:3:\"0px\";s:24:\"flyout_link_padding_left\";s:4:\"10px\";s:17:\"flyout_link_color\";s:4:\"#666\";s:16:\"flyout_link_size\";s:4:\"14px\";s:18:\"flyout_link_family\";s:7:\"inherit\";s:26:\"flyout_link_text_transform\";s:4:\"none\";s:18:\"flyout_link_weight\";s:6:\"normal\";s:27:\"flyout_link_text_decoration\";s:4:\"none\";s:23:\"flyout_link_color_hover\";s:4:\"#666\";s:24:\"flyout_link_weight_hover\";s:6:\"normal\";s:33:\"flyout_link_text_decoration_hover\";s:4:\"none\";s:30:\"flyout_menu_item_divider_color\";s:24:\"rgba(255, 255, 255, 0.1)\";s:21:\"responsive_breakpoint\";s:5:\"600px\";s:22:\"toggle_background_from\";s:4:\"#222\";s:20:\"toggle_background_to\";s:4:\"#222\";s:17:\"toggle_bar_height\";s:4:\"40px\";s:14:\"mobile_columns\";s:1:\"2\";s:22:\"mobile_background_from\";s:4:\"#222\";s:20:\"mobile_background_to\";s:4:\"#222\";s:23:\"mobile_menu_item_height\";s:4:\"40px\";s:27:\"mobile_menu_item_link_color\";s:7:\"#ffffff\";s:31:\"mobile_menu_item_link_font_size\";s:4:\"14px\";s:32:\"mobile_menu_item_link_text_align\";s:4:\"left\";s:10:\"custom_css\";s:226:\"/** Push menu onto new line **/ \r\n#{$wrap} { \r\n    clear: both; \r\n@include desktop {\r\n    #{$wrap} {\r\n        max-width: 700px; /** width in pixels or percent **/\r\n        margin: 0 auto; /** center align menu **/\r\n    }\r\n}\r\n}\";s:6:\"shadow\";s:3:\"off\";s:11:\"transitions\";s:3:\"off\";s:6:\"resets\";s:3:\"off\";s:17:\"menu_item_divider\";s:3:\"off\";s:24:\"flyout_menu_item_divider\";s:3:\"off\";s:21:\"disable_mobile_toggle\";s:3:\"off\";}}", "no");
INSERT INTO `wpj1_options` VALUES("2035", "WPGMZA_SETTINGS", "a:10:{s:24:\"map_default_starting_lat\";s:18:\"1.0673313646197207\";s:24:\"map_default_starting_lng\";s:18:\"104.07754442351347\";s:18:\"map_default_height\";s:3:\"400\";s:17:\"map_default_width\";s:3:\"100\";s:16:\"map_default_zoom\";i:13;s:20:\"map_default_max_zoom\";i:1;s:16:\"map_default_type\";i:1;s:21:\"map_default_alignment\";i:1;s:22:\"map_default_width_type\";s:2:\"\\%\";s:23:\"map_default_height_type\";s:2:\"px\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1992", "WPGM_V6_FIRST_TIME", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1848", "hotelier_terms_page_id", "0", "yes");
INSERT INTO `wpj1_options` VALUES("1961", "_site_transient_timeout_browser_49da57eac7f840522fef2b86e883cffa", "1522269340", "no");
INSERT INTO `wpj1_options` VALUES("1962", "_site_transient_browser_49da57eac7f840522fef2b86e883cffa", "a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"64.0.3282.186\";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");
INSERT INTO `wpj1_options` VALUES("1740", "widget_wpbooking_widget_form_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1697", "widget_awebooking_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1698", "widget_awebooking_check_availability", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1701", "awebooking_installed", "true", "yes");
INSERT INTO `wpj1_options` VALUES("1707", "_wp_session_n0B1vcCugDQaUH3R8Ful6OyasaM77zFDg1Z7AQXn", "a:2:{s:7:\"payload\";a:1:{s:6:\"_flash\";a:2:{s:3:\"old\";a:0:{}s:3:\"new\";a:0:{}}}s:13:\"last_activity\";i:1521303617;}", "no");
INSERT INTO `wpj1_options` VALUES("1712", "_wp_session_iRygdXGdeSqtiJMQAPoZaC66aDdBQa28hxPU5fry", "a:2:{s:7:\"payload\";a:1:{s:6:\"_flash\";a:2:{s:3:\"old\";a:0:{}s:3:\"new\";a:0:{}}}s:13:\"last_activity\";i:1521303831;}", "no");
INSERT INTO `wpj1_options` VALUES("1828", "_wp_session_LsK6r8z5sAF5eaMZ0Cr41Hgb2bICYoD81kvm7Wu0", "a:2:{s:7:\"payload\";a:1:{s:6:\"_flash\";a:2:{s:3:\"old\";a:0:{}s:3:\"new\";a:0:{}}}s:13:\"last_activity\";i:1521305186;}", "no");
INSERT INTO `wpj1_options` VALUES("1733", "wpbooking_service_version", "1.0.2.11", "yes");
INSERT INTO `wpj1_options` VALUES("1734", "wpbooking_order_version", "1.0.4", "yes");
INSERT INTO `wpj1_options` VALUES("1735", "wpbooking_order_hotel_room_version", "1.0.2", "yes");
INSERT INTO `wpj1_options` VALUES("1736", "wpbooking_availability_version", "1.0.6", "yes");
INSERT INTO `wpj1_options` VALUES("1737", "wpbooking_payment_version", "1.0", "yes");
INSERT INTO `wpj1_options` VALUES("1738", "wpbooking_favorite_version", "1.0", "yes");
INSERT INTO `wpj1_options` VALUES("1739", "wpbooking_review_helpful_version", "1.0.1", "yes");
INSERT INTO `wpj1_options` VALUES("2040", "gmw_options", "a:17:{s:6:\"sc_map\";s:3:\"gmw\";s:7:\"api_key\";s:0:\"\";s:8:\"track_ga\";s:1:\"0\";s:14:\"include_jquery\";s:1:\"1\";s:17:\"include_gmaps_api\";s:1:\"1\";s:19:\"include_lightbox_js\";s:1:\"1\";s:20:\"include_lightbox_css\";s:1:\"1\";s:16:\"disable_tooltips\";s:1:\"0\";s:15:\"disable_sidebar\";s:1:\"0\";s:15:\"activation_code\";s:0:\"\";s:14:\"license_active\";s:0:\"\";s:15:\"license_expires\";s:0:\"\";s:12:\"license_type\";s:0:\"\";s:13:\"first_version\";s:4:\"3.83\";s:13:\"first_install\";i:1521752166;s:13:\"last_tracking\";b:0;s:17:\"first_install_gmt\";i:1521752166;}", "yes");
INSERT INTO `wpj1_options` VALUES("2047", "widget_googlemapswidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("2178", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1522123432", "no");
INSERT INTO `wpj1_options` VALUES("2179", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4442;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2673;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2545;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2411;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1862;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1642;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1636;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1449;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1384;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1381;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1380;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1305;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1280;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1188;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1090;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1056;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1015;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:995;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:875;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:866;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:823;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:797;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:794;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:700;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:690;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:683;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:674;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:674;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:655;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:655;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:639;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:637;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:632;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:616;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:610;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:601;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:600;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:588;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:585;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:585;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:557;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:545;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:535;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:531;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:521;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:517;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:511;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:504;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:491;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:487;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:487;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:482;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:479;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:471;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:466;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:463;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:457;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:451;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:436;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:428;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:423;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:419;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:418;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:416;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:412;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:411;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:402;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:399;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:390;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:385;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:381;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:362;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:356;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:354;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:350;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:343;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:343;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:340;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:338;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:336;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:335;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:334;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:333;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:330;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:329;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:328;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:319;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:310;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:304;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:302;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:302;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:300;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:295;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:293;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:292;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:291;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:289;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:288;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:286;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:285;}}", "no");
INSERT INTO `wpj1_options` VALUES("2116", "widget_maxmegamenu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("2117", "megamenu_version", "2.4.1.5", "yes");
INSERT INTO `wpj1_options` VALUES("2118", "megamenu_settings", "a:3:{s:6:\"prefix\";s:8:\"disabled\";s:12:\"descriptions\";s:7:\"enabled\";s:12:\"primary-menu\";a:7:{s:7:\"enabled\";s:1:\"1\";s:5:\"event\";s:5:\"hover\";s:6:\"effect\";s:7:\"fade_up\";s:12:\"effect_speed\";s:3:\"200\";s:13:\"effect_mobile\";s:8:\"disabled\";s:19:\"effect_speed_mobile\";s:3:\"200\";s:5:\"theme\";s:7:\"default\";}}", "yes");
INSERT INTO `wpj1_options` VALUES("2119", "_transient_timeout_plugin_slugs", "1522199118", "no");
INSERT INTO `wpj1_options` VALUES("2120", "_transient_plugin_slugs", "a:6:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:25:\"duplicator/duplicator.php\";i:2;s:29:\"gmap-embed/srm_gmap_embed.php\";i:3;s:21:\"megamenu/megamenu.php\";i:4;s:46:\"under-construction-page/under-construction.php\";i:5;s:21:\"wp-reset/wp-reset.php\";}", "no");
INSERT INTO `wpj1_options` VALUES("2194", "duplicator_ui_view_state", "a:3:{s:22:\"dup-pack-storage-panel\";s:1:\"1\";s:22:\"dup-pack-archive-panel\";s:1:\"1\";s:24:\"dup-pack-installer-panel\";s:1:\"1\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1628", "widget_hb_widget_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1629", "widget_hb_widget_carousel", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1630", "widget_hb_widget_best_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1631", "widget_hb_widget_lastest_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1632", "widget_hb_widget_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("1633", "hotel_booking_cart_page_id", "206512", "yes");
INSERT INTO `wpj1_options` VALUES("1634", "tp_hotel_booking_cart_page_id", "206512", "yes");
INSERT INTO `wpj1_options` VALUES("1635", "hotel_booking_checkout_page_id", "206513", "yes");
INSERT INTO `wpj1_options` VALUES("1636", "tp_hotel_booking_checkout_page_id", "206513", "yes");
INSERT INTO `wpj1_options` VALUES("1637", "hotel_booking_search_page_id", "206514", "yes");
INSERT INTO `wpj1_options` VALUES("1638", "tp_hotel_booking_search_page_id", "206514", "yes");
INSERT INTO `wpj1_options` VALUES("1639", "hotel_booking_account_page_id", "206515", "yes");
INSERT INTO `wpj1_options` VALUES("1640", "tp_hotel_booking_account_page_id", "206515", "yes");
INSERT INTO `wpj1_options` VALUES("1641", "hotel_booking_terms_page_id", "206516", "yes");
INSERT INTO `wpj1_options` VALUES("1642", "tp_hotel_booking_terms_page_id", "206516", "yes");
INSERT INTO `wpj1_options` VALUES("1643", "hotel_booking_thankyou_page_id", "206517", "yes");
INSERT INTO `wpj1_options` VALUES("1644", "tp_hotel_booking_thankyou_page_id", "206517", "yes");
INSERT INTO `wpj1_options` VALUES("1645", "wphb_init", "1", "yes");
INSERT INTO `wpj1_options` VALUES("1647", "tp_hotel_booking_catalog_image_height", "270", "yes");
INSERT INTO `wpj1_options` VALUES("1648", "tp_hotel_booking_room_image_gallery_width", "270", "yes");
INSERT INTO `wpj1_options` VALUES("1649", "tp_hotel_booking_room_image_gallery_height", "270", "yes");
INSERT INTO `wpj1_options` VALUES("1650", "tp_hotel_booking_room_thumbnail_width", "150", "yes");
INSERT INTO `wpj1_options` VALUES("1651", "tp_hotel_booking_room_thumbnail_height", "150", "yes");
INSERT INTO `wpj1_options` VALUES("1699", "_wp_session_4qdGvbdexWls1JAubQSIroyXbZXqRrOzYAlnJo3R", "a:2:{s:7:\"payload\";a:1:{s:6:\"_flash\";a:2:{s:3:\"old\";a:0:{}s:3:\"new\";a:0:{}}}s:13:\"last_activity\";i:1521305213;}", "no");
INSERT INTO `wpj1_options` VALUES("1700", "awebooking_settings", "a:9:{s:23:\"page_check_availability\";i:206527;s:12:\"page_booking\";i:206528;s:13:\"page_checkout\";i:206529;s:15:\"enable_location\";s:0:\"\";s:8:\"currency\";s:3:\"IDR\";s:17:\"currency_position\";s:4:\"left\";s:24:\"price_thousand_separator\";s:1:\",\";s:23:\"price_decimal_separator\";s:1:\".\";s:21:\"price_number_decimals\";s:1:\"2\";}", "yes");
INSERT INTO `wpj1_options` VALUES("1646", "tp_hotel_booking_catalog_image_width", "270", "yes");
INSERT INTO `wpj1_options` VALUES("1452", "project_category_children", "a:0:{}", "yes");
INSERT INTO `wpj1_options` VALUES("2124", "megamenu_themes_last_updated", "default", "no");
INSERT INTO `wpj1_options` VALUES("2125", "megamenu_toggle_blocks", "a:2:{s:14:\"custom_theme_1\";a:1:{i:1;a:11:{s:4:\"type\";s:11:\"menu_toggle\";s:5:\"align\";s:5:\"right\";s:11:\"closed_text\";s:4:\"MENU\";s:9:\"open_text\";s:4:\"MENU\";s:11:\"closed_icon\";s:9:\"dash-f333\";s:9:\"open_icon\";s:9:\"dash-f153\";s:10:\"text_color\";s:7:\"#ffffff\";s:9:\"text_size\";s:4:\"14px\";s:9:\"icon_size\";s:4:\"24px\";s:10:\"icon_color\";s:7:\"#ffffff\";s:13:\"icon_position\";s:5:\"after\";}}s:7:\"default\";a:1:{i:1;a:11:{s:4:\"type\";s:11:\"menu_toggle\";s:5:\"align\";s:5:\"right\";s:11:\"closed_text\";s:4:\"MENU\";s:9:\"open_text\";s:4:\"MENU\";s:11:\"closed_icon\";s:9:\"dash-f333\";s:9:\"open_icon\";s:9:\"dash-f153\";s:10:\"text_color\";s:7:\"#ffffff\";s:9:\"text_size\";s:4:\"14px\";s:9:\"icon_size\";s:4:\"24px\";s:10:\"icon_color\";s:7:\"#ffffff\";s:13:\"icon_position\";s:5:\"after\";}}}", "no");
INSERT INTO `wpj1_options` VALUES("2123", "_transient_megamenu_css_version", "2.4.1.5", "yes");
INSERT INTO `wpj1_options` VALUES("2139", "_transient_megamenu_css", "/** Sunday 25th of March 2018 02:49:39 PM (core) **/\n\n#mega-menu-wrap-primary-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link {\n  -moz-transition: none;\n  -o-transition: none;\n  -webkit-transition: none;\n  transition: none;\n  -webkit-border-radius: 0 0 0 0;\n  -moz-border-radius: 0 0 0 0;\n  -ms-border-radius: 0 0 0 0;\n  -o-border-radius: 0 0 0 0;\n  border-radius: 0 0 0 0;\n  -webkit-box-shadow: none;\n  -moz-box-shadow: none;\n  -ms-box-shadow: none;\n  -o-box-shadow: none;\n  box-shadow: none;\n  background: none;\n  border: 0;\n  bottom: auto;\n  box-sizing: border-box;\n  clip: auto;\n  color: #666;\n  display: block;\n  float: none;\n  font-family: inherit;\n  font-size: 14px;\n  height: auto;\n  left: auto;\n  line-height: 1.7;\n  list-style-type: none;\n  margin: 0;\n  min-height: 0;\n  opacity: 1;\n  outline: none;\n  overflow: visible;\n  padding: 0;\n  position: relative;\n  right: auto;\n  text-align: left;\n  text-decoration: none;\n  text-transform: none;\n  top: auto;\n  vertical-align: baseline;\n  visibility: inherit;\n  width: auto;\n}\n#mega-menu-wrap-primary-menu:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu ul.mega-sub-menu:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item:before, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link:before, #mega-menu-wrap-primary-menu:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu ul.mega-sub-menu:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link:after {\n  display: none;\n}\n#mega-menu-wrap-primary-menu {\n  background: #d4af37;\n  -webkit-border-radius: 0px 0px 0px 0px;\n  -moz-border-radius: 0px 0px 0px 0px;\n  -ms-border-radius: 0px 0px 0px 0px;\n  -o-border-radius: 0px 0px 0px 0px;\n  border-radius: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-primary-menu.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-primary-menu.mega-keyboard-navigation #mega-menu-primary-menu a:focus, #mega-menu-wrap-primary-menu.mega-keyboard-navigation #mega-menu-primary-menu input:focus {\n  -webkit-box-shadow: inset 0px 0px 3px 1px #0ff;\n  -moz-box-shadow: inset 0px 0px 3px 1px #0ff;\n  -ms-box-shadow: inset 0px 0px 3px 1px #0ff;\n  -o-box-shadow: inset 0px 0px 3px 1px #0ff;\n  box-shadow: inset 0px 0px 3px 1px #0ff;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu {\n  visibility: visible;\n  text-align: left;\n  padding: 0px 0px 0px 0px;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu {\n    background: #222;\n  }\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu {\n    padding: 0;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link {\n  cursor: pointer;\n  display: inline;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group {\n  vertical-align: middle;\n  display: inline-block;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group .mega-menu-description {\n  line-height: 1.5;\n  display: block;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link .mega-description-group .mega-menu-description {\n  font-style: italic;\n  font-size: 0.8em;\n  text-transform: none;\n  font-weight: normal;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link {\n  display: table-cell;\n  vertical-align: middle;\n  line-height: initial;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {\n  display: block;\n  margin: 0 0 6px 0;\n  text-align: center;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {\n  display: inline-block;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link {\n    display: block;\n    line-height: 40px;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {\n    display: inline-block;\n    margin: 0 6px 0 0;\n    text-align: left;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {\n  float: right;\n  margin: 0 0 0 6px;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-animating > ul.mega-sub-menu {\n  pointer-events: none;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {\n  cursor: default;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {\n  cursor: pointer;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu p {\n  margin-bottom: 10px;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu input, #mega-menu-wrap-primary-menu #mega-menu-primary-menu img {\n  max-width: 100%;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item > ul.mega-sub-menu {\n  display: block;\n  visibility: hidden;\n  opacity: 1;\n  pointer-events: auto;\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade\"] li.mega-menu-item > ul.mega-sub-menu {\n    opacity: 0;\n    transition-duration: 200ms;\n    transition-timing-function: ease-in;\n    transition-property: opacity, visibility;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade\"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade\"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade\"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade\"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n    opacity: 1;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade_up\"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade_up\"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {\n    opacity: 0;\n    margin-top: 10px;\n    transition-duration: 200ms;\n    transition-timing-function: ease-in;\n    transition-property: opacity, margin-top, visibility;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade_up\"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade_up\"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade_up\"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"fade_up\"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n    opacity: 1;\n    margin-top: 0;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"slide_up\"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"slide_up\"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {\n    margin-top: 10px;\n    transition-duration: 200ms;\n    transition-timing-function: ease-in;\n    transition-property: margin-top, visibility;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"slide_up\"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"slide_up\"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"slide_up\"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect=\"slide_up\"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n    margin-top: 0;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {\n  visibility: visible;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {\n  visibility: inherit;\n  opacity: 1;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item a[class^=\'dashicons\']:before {\n  font-family: dashicons;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item a.mega-menu-link:before {\n  display: inline-block;\n  font: inherit;\n  font-family: dashicons;\n  position: static;\n  margin: 0 6px 0 0px;\n  vertical-align: top;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  color: inherit;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-hide-text a.mega-menu-link:before {\n  margin: 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {\n  margin: 0 6px 0 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {\n  -webkit-border-radius: 0px 0px 0 0;\n  -moz-border-radius: 0px 0px 0 0;\n  -ms-border-radius: 0px 0px 0 0;\n  -o-border-radius: 0px 0px 0 0;\n  border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-right > ul.mega-sub-menu {\n  right: 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {\n  -webkit-border-radius: 0px 0px 0 0;\n  -moz-border-radius: 0px 0px 0 0;\n  -ms-border-radius: 0px 0px 0 0;\n  -o-border-radius: 0px 0px 0 0;\n  border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-menu-item {\n  position: static;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item {\n  margin: 0 100px 0 0;\n  display: inline-block;\n  height: auto;\n  vertical-align: middle;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-right {\n  float: right;\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-right {\n    margin: 0 0 0 100px;\n  }\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-float-left {\n    float: left;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link:focus {\n  background: rgba(255, 255, 255, 0.1);\n  color: #fff;\n  font-weight: normal;\n  text-decoration: none;\n  border-color: #fff;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {\n  background: rgba(255, 255, 255, 0.1);\n  color: #fff;\n  font-weight: normal;\n  text-decoration: none;\n  border-color: #fff;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {\n  border-top: 0px solid #fff;\n  border-left: 0px solid #fff;\n  border-right: 0px solid #fff;\n  border-bottom: 0px solid #fff;\n  outline: none;\n  text-decoration: none;\n  padding: 0px 10px 0px 10px;\n  line-height: 40px;\n  font-weight: normal;\n  height: 40px;\n  vertical-align: baseline;\n  text-align: left;\n  width: auto;\n  display: block;\n  color: #fff;\n  text-transform: none;\n  text-decoration: none;\n  background: rgba(0, 0, 0, 0);\n  -webkit-border-radius: 0px 0px 0px 0px;\n  -moz-border-radius: 0px 0px 0px 0px;\n  -ms-border-radius: 0px 0px 0px 0px;\n  -o-border-radius: 0px 0px 0px 0px;\n  border-radius: 0px 0px 0px 0px;\n  font-family: inherit;\n  font-size: 14px;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {\n    text-align: left;\n    color: #fff;\n    font-size: 14px;\n  }\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link {\n    line-height: inherit;\n    display: table-cell;\n    vertical-align: middle;\n  }\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {\n    display: none;\n  }\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item {\n    display: list-item;\n    margin: 0;\n    clear: both;\n    border: 0;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-item-align-right {\n    float: none;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {\n    -webkit-border-radius: 0 0 0 0 0 0 0;\n    -moz-border-radius: 0 0 0 0 0 0 0;\n    -ms-border-radius: 0 0 0 0 0 0 0;\n    -o-border-radius: 0 0 0 0 0 0 0;\n    border-radius: 0 0 0 0 0 0 0;\n    border: 0;\n    margin: 0;\n    line-height: 40px;\n    height: 40px;\n    padding: 0 10px;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {\n  width: 100%;\n  float: left;\n  background: transparent;\n  border: 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {\n  float: left;\n  min-height: 1px;\n  background: transparent;\n  border: 0;\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {\n    width: 25%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {\n    width: 75%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {\n    width: 20%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {\n    width: 40%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {\n    width: 60%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {\n    width: 80%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {\n    width: 16.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {\n    width: 83.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {\n    width: 14.28571%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {\n    width: 28.57143%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {\n    width: 42.85714%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {\n    width: 57.14286%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {\n    width: 71.42857%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {\n    width: 85.71429%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {\n    width: 12.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {\n    width: 25%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {\n    width: 37.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {\n    width: 62.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {\n    width: 75%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {\n    width: 87.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {\n    width: 11.11111%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {\n    width: 22.22222%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {\n    width: 44.44444%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {\n    width: 55.55556%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {\n    width: 77.77778%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {\n    width: 88.88889%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {\n    width: 10%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {\n    width: 20%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {\n    width: 30%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {\n    width: 40%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {\n    width: 60%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {\n    width: 70%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {\n    width: 80%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {\n    width: 90%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {\n    width: 9.09091%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {\n    width: 18.18182%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {\n    width: 27.27273%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {\n    width: 36.36364%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {\n    width: 45.45455%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {\n    width: 54.54545%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {\n    width: 63.63636%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {\n    width: 72.72727%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {\n    width: 81.81818%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {\n    width: 90.90909%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {\n    width: 8.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {\n    width: 16.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {\n    width: 25%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {\n    width: 41.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {\n    width: 58.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {\n    width: 75%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {\n    width: 83.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {\n    width: 91.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {\n    width: 100%;\n  }\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column.mega-menu-clear {\n    clear: left;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {\n  padding: 15px 15px 15px 15px;\n  width: 100%;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {\n  z-index: 999;\n  -webkit-border-radius: 0px 0px 0px 0px;\n  -moz-border-radius: 0px 0px 0px 0px;\n  -ms-border-radius: 0px 0px 0px 0px;\n  -o-border-radius: 0px 0px 0px 0px;\n  border-radius: 0px 0px 0px 0px;\n  background: #e9ce76;\n  padding: 0px 0px 0px 0px;\n  position: absolute;\n  width: 100%;\n  border-top: 0px solid #fff;\n  border-left: 0px solid #fff;\n  border-right: 0px solid #fff;\n  border-bottom: 0px solid #fff;\n  max-width: none;\n  left: 0;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {\n    float: left;\n    position: static;\n    width: 100%;\n  }\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {\n    width: 25%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {\n    width: 75%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {\n    width: 20%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {\n    width: 40%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {\n    width: 60%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {\n    width: 80%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {\n    width: 16.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {\n    width: 83.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {\n    width: 14.28571%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {\n    width: 28.57143%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {\n    width: 42.85714%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {\n    width: 57.14286%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {\n    width: 71.42857%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {\n    width: 85.71429%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {\n    width: 12.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {\n    width: 25%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {\n    width: 37.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {\n    width: 62.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {\n    width: 75%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {\n    width: 87.5%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {\n    width: 11.11111%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {\n    width: 22.22222%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {\n    width: 33.33333%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {\n    width: 44.44444%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {\n    width: 55.55556%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {\n    width: 66.66667%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {\n    width: 77.77778%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {\n    width: 88.88889%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {\n    width: 100%;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {\n  margin: 5px 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item-has-children a.mega-menu-link:after {\n  display: none;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {\n  clear: both;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n  margin-left: 10px;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n  margin-left: 20px;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {\n  color: #666;\n  font-family: inherit;\n  font-size: 14px;\n  display: block;\n  float: left;\n  clear: none;\n  padding: 15px 15px 15px 15px;\n  vertical-align: top;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {\n  clear: left;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {\n  color: #555;\n  font-family: inherit;\n  font-size: 16px;\n  text-transform: uppercase;\n  text-decoration: none;\n  font-weight: bold;\n  margin: 0px 0px 0px 0px;\n  padding: 0px 0px 5px 0px;\n  vertical-align: top;\n  display: block;\n  border-top: 0px solid #555;\n  border-left: 0px solid #555;\n  border-right: 0px solid #555;\n  border-bottom: 0px solid #555;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {\n  color: #555;\n  font-family: inherit;\n  font-size: 16px;\n  text-transform: uppercase;\n  text-decoration: none;\n  font-weight: bold;\n  margin: 0px 0px 0px 0px;\n  padding: 0px 0px 0px 0px;\n  vertical-align: top;\n  display: block;\n  border-top: 0px solid #555;\n  border-left: 0px solid #555;\n  border-right: 0px solid #555;\n  border-bottom: 0px solid #555;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {\n  color: #555;\n  font-weight: bold;\n  text-decoration: none;\n  background: rgba(0, 0, 0, 0);\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {\n  color: #666;\n  font-family: inherit;\n  font-size: 14px;\n  text-transform: none;\n  text-decoration: none;\n  font-weight: normal;\n  margin: 0;\n  padding: 0px 0px 0px 0px;\n  vertical-align: top;\n  display: block;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {\n  color: #666;\n  font-weight: normal;\n  text-decoration: none;\n  background: rgba(0, 0, 0, 0);\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {\n    border: 0;\n    padding: 10px;\n    -webkit-border-radius: 0 0 0 0;\n    -moz-border-radius: 0 0 0 0;\n    -ms-border-radius: 0 0 0 0;\n    -o-border-radius: 0 0 0 0;\n    border-radius: 0 0 0 0;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n    width: 50%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {\n    clear: left;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {\n  color: #666;\n  font-family: inherit;\n  font-size: 14px;\n  text-transform: none;\n  text-decoration: none;\n  font-weight: normal;\n  margin: 0;\n  border: 0;\n  padding: 0px 0px 0px 0px;\n  vertical-align: top;\n  display: block;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {\n  color: #666;\n  font-weight: normal;\n  text-decoration: none;\n  background: rgba(0, 0, 0, 0);\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu {\n  z-index: 999;\n  position: absolute;\n  width: 150px;\n  border-top: 0px solid #fff;\n  border-left: 0px solid #fff;\n  border-right: 0px solid #fff;\n  border-bottom: 0px solid #fff;\n  padding: 0px 0px 0px 0px;\n  background: #f1f1f1;\n  max-width: none;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu {\n    float: left;\n    position: static;\n    width: 100%;\n    padding: 0;\n    border: 0;\n  }\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {\n    clear: both;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {\n  display: block;\n  background: #f1f1f1;\n  color: #666;\n  font-family: inherit;\n  font-size: 14px;\n  font-weight: normal;\n  padding: 0px 10px 0px 10px;\n  line-height: 35px;\n  text-decoration: none;\n  text-transform: none;\n  vertical-align: baseline;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {\n  border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {\n    border-top-left-radius: 0;\n    border-top-right-radius: 0;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {\n  border-bottom-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {\n    border-bottom-right-radius: 0;\n    border-bottom-left-radius: 0;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {\n  background: #ddd;\n  font-weight: normal;\n  text-decoration: none;\n  color: #666;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n  position: absolute;\n  left: 100%;\n  top: 0;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n    position: static;\n    left: 0;\n    width: 100%;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {\n    padding-left: 20px;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children > a.mega-menu-link:after {\n  content: \'\\f140\';\n  display: inline-block;\n  font-family: dashicons;\n  margin: 0 0 0 6px;\n  vertical-align: top;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  transform: rotate(0);\n  color: inherit;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children a.mega-menu-link:after {\n    float: right;\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after {\n    content: \'\\f142\';\n  }\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link:after {\n    display: none;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after {\n  display: none;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {\n  content: \'\\f139\';\n  float: right;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {\n    content: \'\\f140\';\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {\n  text-align: right;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {\n    text-align: left;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {\n  float: right;\n  margin: 0 0 0 6px;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {\n    float: left;\n    margin: 0 6px 0 0;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {\n  content: \'\\f141\';\n  float: left;\n  margin: 0;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {\n    content: \'\\f140\';\n    float: right;\n  }\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n  left: -100%;\n  top: 0;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu li[class^=\'mega-lang-item\'] > a.mega-menu-link > img {\n  display: inline;\n}\n#mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link > img.iclflag {\n  display: inline;\n  margin-right: 8px;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-hide-on-mobile, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile {\n    display: none;\n  }\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-hide-on-desktop, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop {\n    display: none;\n  }\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle {\n  display: none;\n  z-index: 1;\n  cursor: pointer;\n  background: #222;\n  -webkit-border-radius: 2px 2px 2px 2px;\n  -moz-border-radius: 2px 2px 2px 2px;\n  -ms-border-radius: 2px 2px 2px 2px;\n  -o-border-radius: 2px 2px 2px 2px;\n  border-radius: 2px 2px 2px 2px;\n  line-height: 40px;\n  height: 40px;\n  text-align: left;\n  -webkit-touch-callout: none;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  outline: none;\n  white-space: nowrap;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle img {\n  max-width: 100%;\n  padding: 0;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-search-wrap {\n  align-self: center;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu .mega-menu-toggle {\n    display: flex;\n  }\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right {\n  display: flex;\n  flex-basis: 33.33%;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left {\n  flex: 1;\n  justify-content: flex-start;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {\n  margin-left: 6px;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-center {\n  justify-content: center;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {\n  margin-left: 3px;\n  margin-right: 3px;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right {\n  flex: 1;\n  justify-content: flex-end;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {\n  margin-right: 6px;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block {\n  display: flex;\n  height: 100%;\n  flex-shrink: 0;\n}\n@media only screen and (max-width: 600px) {\n  #mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu {\n    display: none;\n  }\n  #mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu li.mega-menu-item > ul.mega-sub-menu {\n    display: none;\n    visibility: visible;\n    opacity: 1;\n  }\n  #mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {\n    display: block;\n  }\n  #mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open + #mega-menu-primary-menu {\n    display: block;\n  }\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle {\n  /** Push menu onto new line **/\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1:after {\n  content: \'\\f333\';\n  font-family: \'dashicons\';\n  font-size: 24px;\n  color: #fff;\n  margin: 0 0 0 5px;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {\n  color: #fff;\n  font-size: 14px;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {\n  display: none;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {\n  display: inline;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:after {\n  content: \'\\f153\';\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {\n  display: inline;\n}\n#mega-menu-wrap-primary-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {\n  display: none;\n}\n#mega-menu-wrap-primary-menu {\n  clear: both;\n}\n@media only screen and (min-width: 601px) {\n  #mega-menu-wrap-primary-menu #mega-menu-wrap-primary-menu {\n    /** width in pixels or percent **/\n    max-width: 700px;\n    /** center align menu **/\n    margin: 0 auto;\n  }\n}\n", "yes");
INSERT INTO `wpj1_options` VALUES("2144", "_transient_timeout_et_divi_customizer_option_set", "1522080808", "no");
INSERT INTO `wpj1_options` VALUES("2145", "_transient_et_divi_customizer_option_set", "theme", "no");
INSERT INTO `wpj1_options` VALUES("2192", "_site_transient_timeout_et_core_version", "1522199118", "no");
INSERT INTO `wpj1_options` VALUES("2193", "_site_transient_et_core_version", "3.0.96", "no");
INSERT INTO `wpj1_options` VALUES("2190", "_site_transient_timeout_et_core_path", "1522199118", "no");
INSERT INTO `wpj1_options` VALUES("2191", "_site_transient_et_core_path", "/home/u4606840/public_html/wp-content/themes/panbilresidence/core", "no");
INSERT INTO `wpj1_options` VALUES("2187", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1522112716;s:7:\"checked\";a:6:{s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.0.1\";s:25:\"duplicator/duplicator.php\";s:6:\"1.2.34\";s:29:\"gmap-embed/srm_gmap_embed.php\";s:5:\"1.3.0\";s:21:\"megamenu/megamenu.php\";s:7:\"2.4.1.5\";s:46:\"under-construction-page/under-construction.php\";s:4:\"2.90\";s:21:\"wp-reset/wp-reset.php\";s:5:\"1.0.1\";}s:8:\"response\";a:1:{s:46:\"under-construction-page/under-construction.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:37:\"w.org/plugins/under-construction-page\";s:4:\"slug\";s:23:\"under-construction-page\";s:6:\"plugin\";s:46:\"under-construction-page/under-construction.php\";s:11:\"new_version\";s:4:\"2.95\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/under-construction-page/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/under-construction-page.2.95.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:76:\"https://ps.w.org/under-construction-page/assets/icon-128x128.png?rev=1567925\";s:2:\"2x\";s:76:\"https://ps.w.org/under-construction-page/assets/icon-256x256.png?rev=1628376\";s:7:\"default\";s:76:\"https://ps.w.org/under-construction-page/assets/icon-256x256.png?rev=1628376\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:79:\"https://ps.w.org/under-construction-page/assets/banner-1544x500.png?rev=1628376\";s:2:\"1x\";s:78:\"https://ps.w.org/under-construction-page/assets/banner-772x250.png?rev=1575797\";s:7:\"default\";s:79:\"https://ps.w.org/under-construction-page/assets/banner-1544x500.png?rev=1628376\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:7:\"default\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";s:7:\"default\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"1.2.34\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.2.34.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=1298463\";s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=1298463\";s:7:\"default\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=1298463\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=1645055\";s:7:\"default\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=1645055\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"gmap-embed/srm_gmap_embed.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/gmap-embed\";s:4:\"slug\";s:10:\"gmap-embed\";s:6:\"plugin\";s:29:\"gmap-embed/srm_gmap_embed.php\";s:11:\"new_version\";s:5:\"1.3.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/gmap-embed/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/gmap-embed.1.3.0.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/gmap-embed/assets/icon-128x128.png?rev=1509263\";s:2:\"2x\";s:63:\"https://ps.w.org/gmap-embed/assets/icon-256x256.png?rev=1509263\";s:7:\"default\";s:63:\"https://ps.w.org/gmap-embed/assets/icon-256x256.png?rev=1509263\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/gmap-embed/assets/banner-772x250.png?rev=1505473\";s:7:\"default\";s:65:\"https://ps.w.org/gmap-embed/assets/banner-772x250.png?rev=1505473\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"megamenu/megamenu.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/megamenu\";s:4:\"slug\";s:8:\"megamenu\";s:6:\"plugin\";s:21:\"megamenu/megamenu.php\";s:11:\"new_version\";s:7:\"2.4.1.5\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/megamenu/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/megamenu.2.4.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/megamenu/assets/icon-128x128.png?rev=1489843\";s:7:\"default\";s:61:\"https://ps.w.org/megamenu/assets/icon-128x128.png?rev=1489843\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/megamenu/assets/banner-772x250.png?rev=1489840\";s:7:\"default\";s:63:\"https://ps.w.org/megamenu/assets/banner-772x250.png?rev=1489840\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"wp-reset/wp-reset.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/wp-reset\";s:4:\"slug\";s:8:\"wp-reset\";s:6:\"plugin\";s:21:\"wp-reset/wp-reset.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/wp-reset/\";s:7:\"package\";s:51:\"https://downloads.wordpress.org/plugin/wp-reset.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/wp-reset/assets/icon-128x128.png?rev=1431144\";s:7:\"default\";s:61:\"https://ps.w.org/wp-reset/assets/icon-128x128.png?rev=1431144\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-reset/assets/banner-772x250.png?rev=1431144\";s:7:\"default\";s:63:\"https://ps.w.org/wp-reset/assets/banner-772x250.png?rev=1431144\";}s:11:\"banners_rtl\";a:0:{}}}}", "no");
INSERT INTO `wpj1_options` VALUES("2188", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"1.2.34\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:1;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("2189", "duplicator_version_plugin", "1.2.34", "yes");
INSERT INTO `wpj1_options` VALUES("2195", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-03-27 01:06:22\";s:7:\"Version\";s:6:\"1.2.34\";s:9:\"VersionWP\";s:5:\"4.9.4\";s:9:\"VersionDB\";s:7:\"10.1.31\";s:10:\"VersionPHP\";s:6:\"7.0.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:24:\"20180327_panbilresidence\";s:4:\"Hash\";s:32:\"0a2cdeca6e4808f84526180327010622\";s:8:\"NameHash\";s:57:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/u4606840/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:40:\"http://panbilresidence.com/wp-snapshots/\";s:8:\"ScanFile\";s:67:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":19:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/u4606840/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-03-27 01:06:22\";s:7:\"Version\";s:6:\"1.2.34\";s:9:\"VersionWP\";s:5:\"4.9.4\";s:9:\"VersionDB\";s:7:\"10.1.31\";s:10:\"VersionPHP\";s:6:\"7.0.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:24:\"20180327_panbilresidence\";s:4:\"Hash\";s:32:\"0a2cdeca6e4808f84526180327010622\";s:8:\"NameHash\";s:57:\"20180327_panbilresidence_0a2cdeca6e4808f84526180327010622\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/u4606840/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:40:\"http://panbilresidence.com/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:10:\"\0*\0Package\";r:58;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:14:\"MariaDB Server\";s:10:\"\0*\0Package\";r:58;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:35:\"/home/u4606840/public_html/wp-admin\";i:1;s:45:\"/home/u4606840/public_html/wp-content/uploads\";i:2;s:47:\"/home/u4606840/public_html/wp-content/languages\";i:3;s:45:\"/home/u4606840/public_html/wp-content/plugins\";i:4;s:44:\"/home/u4606840/public_html/wp-content/themes\";i:5;s:38:\"/home/u4606840/public_html/wp-includes\";}}s:9:\"Installer\";r:80;s:8:\"Database\";r:88;}", "yes");
INSERT INTO `wpj1_options` VALUES("135", "theme_mods_twentyseventeen", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1516678914;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `wpj1_options` VALUES("136", "current_theme", "Divi", "yes");
INSERT INTO `wpj1_options` VALUES("137", "theme_mods_panbilresidence", "a:9:{i:0;b:0;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_6\";s:2:\"on\";s:18:\"custom_css_post_id\";i:39;s:21:\"et_pb_replace_content\";s:2:\"on\";}", "yes");
INSERT INTO `wpj1_options` VALUES("138", "theme_switched", "", "yes");
INSERT INTO `wpj1_options` VALUES("139", "et_pb_cache_notice", "a:1:{s:6:\"3.0.96\";s:6:\"ignore\";}", "yes");
INSERT INTO `wpj1_options` VALUES("162", "recently_activated", "a:3:{s:41:\"google-maps-widget/google-maps-widget.php\";i:1521752204;s:31:\"wp-google-maps/wpGoogleMaps.php\";i:1521752157;s:37:\"wp-hotel-booking/wp-hotel-booking.php\";i:1521525950;}", "yes");
INSERT INTO `wpj1_options` VALUES("1594", "tp_hotel_booking_price_including_tax", "1", "yes");
INSERT INTO `wpj1_options` VALUES("144", "et_core_version", "3.0.96", "yes");
INSERT INTO `wpj1_options` VALUES("146", "widget_aboutmewidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("147", "widget_adsensewidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("148", "widget_advwidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("149", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("150", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wpj1_options` VALUES("151", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("152", "et_images_temp_folder", "/home/u4606840/public_html/wp-content/uploads/et_temp", "yes");
INSERT INTO `wpj1_options` VALUES("153", "et_schedule_clean_images_last_time", "1521568377", "yes");
INSERT INTO `wpj1_options` VALUES("154", "et_pb_builder_options", "a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}", "yes");
INSERT INTO `wpj1_options` VALUES("160", "_site_transient_et_update_all_plugins", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1522112718;}", "no");
INSERT INTO `wpj1_options` VALUES("161", "ucp_pointers", "a:1:{s:15:\"getting_started\";a:4:{s:6:\"target\";s:29:\".ucp-main-tab li:nth-child(2)\";s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:4:\"left\";s:7:\"content\";s:414:\"Watch the short <a href=\"https://www.youtube.com/watch?v=RN4XABhK7_w\" target=\"_blank\">getting started video</a> to get you up to speed with UCP in no time. If that doesn\'t answer your questions watch the longer <a href=\"https://www.youtube.com/watch?v=K3DF-NP6Fog\" target=\"_blank\">in-depth video walktrough</a>.<br>If you need the videos later, links are in the <a href=\"#\" class=\"change_tab\" data-tab=\"4\">FAQ</a>.\";}}", "yes");
INSERT INTO `wpj1_options` VALUES("167", "ucp_meta", "a:3:{s:13:\"first_version\";s:4:\"2.80\";s:13:\"first_install\";i:1516679028;s:11:\"options_ver\";s:4:\"2.90\";}", "yes");
INSERT INTO `wpj1_options` VALUES("171", "et_automatic_updates_options", "a:2:{s:8:\"username\";s:0:\"\";s:7:\"api_key\";s:0:\"\";}", "yes");
INSERT INTO `wpj1_options` VALUES("178", "ucp_options", "a:29:{s:6:\"status\";s:1:\"0\";s:8:\"end_date\";s:0:\"\";s:14:\"ga_tracking_id\";s:0:\"\";s:5:\"theme\";s:12:\"mad_designer\";s:10:\"custom_css\";s:0:\"\";s:5:\"title\";s:34:\"[site-title] is under construction\";s:11:\"description\";s:14:\"[site-tagline]\";s:8:\"heading1\";s:40:\"Sorry, we\'re doing some work on the site\";s:7:\"content\";s:89:\"Thank you for being patient. We are doing some work on the site and will be back shortly.\";s:15:\"social_facebook\";s:0:\"\";s:14:\"social_twitter\";s:0:\"\";s:13:\"social_google\";s:0:\"\";s:15:\"social_linkedin\";s:0:\"\";s:14:\"social_youtube\";s:0:\"\";s:12:\"social_vimeo\";s:0:\"\";s:16:\"social_pinterest\";s:0:\"\";s:15:\"social_dribbble\";s:0:\"\";s:14:\"social_behance\";s:0:\"\";s:16:\"social_instagram\";s:0:\"\";s:13:\"social_tumblr\";s:0:\"\";s:12:\"social_email\";s:0:\"\";s:12:\"social_phone\";s:0:\"\";s:12:\"social_skype\";s:0:\"\";s:15:\"social_telegram\";s:0:\"\";s:15:\"social_whatsapp\";s:0:\"\";s:12:\"login_button\";s:1:\"1\";s:8:\"linkback\";s:1:\"0\";s:17:\"whitelisted_roles\";a:1:{i:0;s:13:\"administrator\";}s:17:\"whitelisted_users\";a:0:{}}", "yes");
INSERT INTO `wpj1_options` VALUES("179", "ucp_notices", "a:1:{s:12:\"dismiss_rate\";b:1;}", "yes");

/* INSERT TABLE DATA: wpj1_postmeta */
INSERT INTO `wpj1_postmeta` VALUES("889", "205892", "_menu_item_object_id", "50");
INSERT INTO `wpj1_postmeta` VALUES("2", "4", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("3", "4", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("4", "4", "_et_pb_layout_applicability", "product_tour");
INSERT INTO `wpj1_postmeta` VALUES("5", "5", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("6", "5", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("7", "6", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("8", "6", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("9", "7", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("10", "7", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("11", "8", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("12", "8", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("13", "9", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("14", "9", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("15", "10", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("16", "10", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("17", "11", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("18", "11", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("19", "12", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("20", "12", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("21", "13", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("22", "13", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("23", "14", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("24", "14", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("25", "15", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("26", "15", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("27", "16", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("28", "16", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("29", "17", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("30", "17", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("31", "18", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("32", "18", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("33", "19", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("34", "19", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("35", "20", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("36", "20", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("37", "21", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("38", "21", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("39", "22", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("40", "22", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("41", "23", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("42", "23", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("43", "24", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("44", "24", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("45", "25", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("46", "25", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("47", "26", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("48", "26", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("49", "27", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("50", "27", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("51", "28", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("52", "28", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("53", "29", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("54", "29", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("55", "30", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("56", "30", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("57", "31", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("58", "31", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("59", "32", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("60", "32", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("61", "33", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("62", "33", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("63", "34", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("64", "34", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("65", "35", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("66", "35", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("67", "36", "_et_pb_predefined_layout", "on");
INSERT INTO `wpj1_postmeta` VALUES("68", "36", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("897", "205901", "_form", "<label> First Name *\n    [text* first-name] </label>\n\n<label> Last Name *\n    [text* last-name] </label>\n\n<label> Your Email *\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]");
INSERT INTO `wpj1_postmeta` VALUES("71", "38", "_wp_attached_file", "2018/01/LOGO-redesain.png");
INSERT INTO `wpj1_postmeta` VALUES("72", "38", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2471;s:6:\"height\";i:1727;s:4:\"file\";s:25:\"2018/01/LOGO-redesain.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-768x537.png\";s:5:\"width\";i:768;s:6:\"height\";i:537;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"LOGO-redesain-1024x716.png\";s:5:\"width\";i:1024;s:6:\"height\";i:716;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"LOGO-redesain-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"LOGO-redesain-1080x755.png\";s:5:\"width\";i:1080;s:6:\"height\";i:755;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"LOGO-redesain-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("73", "42", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("74", "42", "_edit_lock", "1516679526:1");
INSERT INTO `wpj1_postmeta` VALUES("75", "43", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("76", "43", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("77", "43", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("78", "43", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("79", "43", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("80", "43", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("81", "43", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("82", "43", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("83", "43", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("84", "43", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("85", "43", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("86", "43", "_edit_lock", "1521788121:1");
INSERT INTO `wpj1_postmeta` VALUES("87", "45", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("88", "45", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("89", "45", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("90", "45", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("91", "45", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("92", "45", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("93", "45", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("94", "45", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("95", "45", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("96", "45", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("97", "45", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("98", "45", "_edit_lock", "1520220578:1");
INSERT INTO `wpj1_postmeta` VALUES("99", "47", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("100", "47", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("101", "47", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("102", "47", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("103", "47", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("104", "47", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("105", "47", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("106", "47", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("107", "47", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("108", "47", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("109", "47", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("110", "47", "_edit_lock", "1520375814:1");
INSERT INTO `wpj1_postmeta` VALUES("111", "50", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("112", "50", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("113", "50", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("114", "50", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("115", "50", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("116", "50", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("117", "50", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("118", "50", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("119", "50", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("120", "50", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("121", "50", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("122", "50", "_edit_lock", "1521784897:1");
INSERT INTO `wpj1_postmeta` VALUES("123", "53", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("124", "53", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("125", "53", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("126", "53", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("127", "53", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("128", "53", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("129", "53", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("130", "53", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("131", "53", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("132", "53", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("133", "53", "_et_pb_custom_css", "/*-----Shutter Effect-----*/\r\n\r\n.ds-hover-1 {\r\n    display: inline-block;\r\n	position: relative;\r\n	margin: 0px;\r\n	overflow: hidden;\r\n	background: #000;\r\n}\r\n\r\n.ds-hover-1 img {\r\n	display: block;\r\n	max-width: 100%;\r\n	-webkit-transition: opacity 0.3s ease-in-out;\r\n	-moz-transition: opacity 0.3s ease-in-out;\r\n	transition: opacity 0.3s ease-in-out;\r\n}\r\n\r\n.ds-hover-1:hover img {\r\n	opacity: 0.5;\r\n}\r\n\r\n.ds-hover-1::after {\r\n	content: attr(ds-title);\r\n	position: absolute;\r\n	height: 12%;\r\n	color: #fff;\r\n    z-index: 1;\r\n	top: 0;\r\n	width: 90%;\r\n	background: rgba(0,0,0,0.5);\r\n	font-weight: 300;\r\n	font-size: 18px;\r\n	text-transform: uppercase;\r\n	padding: 5%;\r\n	\r\n}\r\n\r\n.ds-hover-1::before {\r\n	content: attr(ds-desc);\r\n	position: absolute;\r\n	height: 100%;\r\n	color: #fff;\r\n	z-index: 1;\r\n	top: 27%;\r\n	width: 100%;\r\n	background: rgba(195,157,99,0.85);\r\n	font-size: 24px;\r\n	padding: 19% 5% 5% 5%;\r\n	-webkit-transform: translateY(100%);\r\n	-moz-transform: translateY(100%);\r\n	transform: translateY(100%);\r\n    -webkit-transition: -webkit-transform 0.3s ease-in-out; \r\n	-moz-transition: -moz-transform 0.3s ease-in-out; \r\n	transition: transform 0.3s ease-in-out; \r\n}\r\n\r\n.ds-hover-1:hover::after,\r\n.ds-hover-1:hover::before {\r\n	-webkit-transform: translateY(0%);\r\n	-moz-transform: translateY(0%);\r\n	transform: translateY(0%);\r\n}\r\n\r\n@media (max-width: 767px) {\r\n \r\np.et_pb_contact_field {\r\nmax-width: 100% !important;\r\n}\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.et_pb_gutters1 .et_pb_column .et_pb_module {\r\n    margin-bottom: -7px;\r\n}\r\n}");
INSERT INTO `wpj1_postmeta` VALUES("134", "53", "_edit_lock", "1521785013:1");
INSERT INTO `wpj1_postmeta` VALUES("135", "55", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("136", "55", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("137", "55", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("138", "55", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("139", "55", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("140", "55", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("141", "55", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("142", "55", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("143", "55", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("144", "55", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("145", "55", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("146", "55", "_edit_lock", "1521538329:1");
INSERT INTO `wpj1_postmeta` VALUES("1476", "206170", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1477", "206170", "_wp_trash_meta_time", "1520078348");
INSERT INTO `wpj1_postmeta` VALUES("2006", "205558", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2007", "205558", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205558\" /]");
INSERT INTO `wpj1_postmeta` VALUES("1474", "206169", "_wp_trash_meta_time", "1520078312");
INSERT INTO `wpj1_postmeta` VALUES("156", "59", "_menu_item_type", "post_type");
INSERT INTO `wpj1_postmeta` VALUES("157", "59", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpj1_postmeta` VALUES("158", "59", "_menu_item_object_id", "53");
INSERT INTO `wpj1_postmeta` VALUES("159", "59", "_menu_item_object", "page");
INSERT INTO `wpj1_postmeta` VALUES("160", "59", "_menu_item_target", "");
INSERT INTO `wpj1_postmeta` VALUES("161", "59", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpj1_postmeta` VALUES("162", "59", "_menu_item_xfn", "");
INSERT INTO `wpj1_postmeta` VALUES("163", "59", "_menu_item_url", "");
INSERT INTO `wpj1_postmeta` VALUES("165", "60", "_menu_item_type", "post_type");
INSERT INTO `wpj1_postmeta` VALUES("166", "60", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpj1_postmeta` VALUES("167", "60", "_menu_item_object_id", "47");
INSERT INTO `wpj1_postmeta` VALUES("168", "60", "_menu_item_object", "page");
INSERT INTO `wpj1_postmeta` VALUES("169", "60", "_menu_item_target", "");
INSERT INTO `wpj1_postmeta` VALUES("170", "60", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpj1_postmeta` VALUES("171", "60", "_menu_item_xfn", "");
INSERT INTO `wpj1_postmeta` VALUES("172", "60", "_menu_item_url", "");
INSERT INTO `wpj1_postmeta` VALUES("260", "72", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpj1_postmeta` VALUES("259", "72", "_menu_item_target", "");
INSERT INTO `wpj1_postmeta` VALUES("258", "72", "_menu_item_object", "page");
INSERT INTO `wpj1_postmeta` VALUES("257", "72", "_menu_item_object_id", "43");
INSERT INTO `wpj1_postmeta` VALUES("256", "72", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpj1_postmeta` VALUES("255", "72", "_menu_item_type", "post_type");
INSERT INTO `wpj1_postmeta` VALUES("2191", "206801", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2175", "50", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"50\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2169", "206727", "wpgmap_show_infowindow", "1");
INSERT INTO `wpj1_postmeta` VALUES("2170", "206727", "wpgmap_enable_direction", "0");
INSERT INTO `wpj1_postmeta` VALUES("2180", "206793", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("719", "205487", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2018/01/table-white-home-interior.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"table-white-home-interior-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"table-white-home-interior-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"table-white-home-interior-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"table-white-home-interior-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("201", "64", "_menu_item_type", "post_type");
INSERT INTO `wpj1_postmeta` VALUES("202", "64", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpj1_postmeta` VALUES("203", "64", "_menu_item_object_id", "55");
INSERT INTO `wpj1_postmeta` VALUES("204", "64", "_menu_item_object", "page");
INSERT INTO `wpj1_postmeta` VALUES("205", "64", "_menu_item_target", "");
INSERT INTO `wpj1_postmeta` VALUES("206", "64", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpj1_postmeta` VALUES("207", "64", "_menu_item_xfn", "");
INSERT INTO `wpj1_postmeta` VALUES("208", "64", "_menu_item_url", "");
INSERT INTO `wpj1_postmeta` VALUES("210", "57", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("211", "57", "_edit_lock", "1519786896:1");
INSERT INTO `wpj1_postmeta` VALUES("212", "57", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("213", "57", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("214", "57", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("215", "57", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("216", "57", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("217", "57", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("218", "57", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("219", "57", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("220", "57", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("221", "57", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("222", "67", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("223", "67", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("224", "67", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("225", "67", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("226", "67", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("227", "67", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("228", "67", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("229", "67", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("230", "67", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("231", "67", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("232", "67", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("233", "67", "_edit_lock", "1516685727:1");
INSERT INTO `wpj1_postmeta` VALUES("234", "69", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("235", "69", "_edit_lock", "1516685715:1");
INSERT INTO `wpj1_postmeta` VALUES("236", "69", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("237", "69", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("238", "69", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("239", "69", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("240", "69", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("241", "69", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("242", "69", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("243", "69", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("244", "69", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("245", "69", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("718", "205487", "_wp_attached_file", "2018/01/table-white-home-interior.jpg");
INSERT INTO `wpj1_postmeta` VALUES("261", "72", "_menu_item_xfn", "");
INSERT INTO `wpj1_postmeta` VALUES("262", "72", "_menu_item_url", "");
INSERT INTO `wpj1_postmeta` VALUES("1475", "206170", "_edit_lock", "1520078341:1");
INSERT INTO `wpj1_postmeta` VALUES("893", "205892", "_menu_item_xfn", "");
INSERT INTO `wpj1_postmeta` VALUES("273", "43", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("1456", "206109", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("275", "43", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"43\" /]");
INSERT INTO `wpj1_postmeta` VALUES("894", "205892", "_menu_item_url", "");
INSERT INTO `wpj1_postmeta` VALUES("279", "81", "_wp_attached_file", "2018/01/LOGO-PANBIL-RESIDENCE-VECTOR.jpg");
INSERT INTO `wpj1_postmeta` VALUES("280", "81", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2081;s:6:\"height\";i:1039;s:4:\"file\";s:40:\"2018/01/LOGO-PANBIL-RESIDENCE-VECTOR.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-768x383.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"LOGO-PANBIL-RESIDENCE-VECTOR-1024x511.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"LOGO-PANBIL-RESIDENCE-VECTOR-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"LOGO-PANBIL-RESIDENCE-VECTOR-1080x539.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"LOGO-PANBIL-RESIDENCE-VECTOR-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:13:\"Design Grafis\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1422092912\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("281", "82", "_wp_attached_file", "2018/01/PSR.png");
INSERT INTO `wpj1_postmeta` VALUES("282", "82", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:478;s:6:\"height\";i:471;s:4:\"file\";s:15:\"2018/01/PSR.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"PSR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"PSR-300x296.png\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"PSR-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"PSR-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"PSR-478x382.png\";s:5:\"width\";i:478;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"PSR-400x471.png\";s:5:\"width\";i:400;s:6:\"height\";i:471;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("283", "83", "_wp_attached_file", "2018/01/logo-panbil-residence-png.png");
INSERT INTO `wpj1_postmeta` VALUES("284", "83", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1181;s:6:\"height\";i:544;s:4:\"file\";s:37:\"2018/01/logo-panbil-residence-png.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-768x354.png\";s:5:\"width\";i:768;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"logo-panbil-residence-png-1024x472.png\";s:5:\"width\";i:1024;s:6:\"height\";i:472;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"logo-panbil-residence-png-1080x544.png\";s:5:\"width\";i:1080;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"logo-panbil-residence-png-1080x497.png\";s:5:\"width\";i:1080;s:6:\"height\";i:497;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"logo-panbil-residence-png-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("892", "205892", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wpj1_postmeta` VALUES("288", "85", "_wp_attached_file", "2018/01/logo-panbil-residence-png-1.png");
INSERT INTO `wpj1_postmeta` VALUES("289", "85", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:124;s:4:\"file\";s:39:\"2018/01/logo-panbil-residence-png-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"logo-panbil-residence-png-1-150x124.png\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("290", "86", "_wp_attached_file", "2018/01/LOGO-PANBIL-RESIDENCE-VECTOR-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("291", "86", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:220;s:6:\"height\";i:110;s:4:\"file\";s:42:\"2018/01/LOGO-PANBIL-RESIDENCE-VECTOR-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"LOGO-PANBIL-RESIDENCE-VECTOR-1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:13:\"Design Grafis\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1422092912\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("891", "205892", "_menu_item_target", "");
INSERT INTO `wpj1_postmeta` VALUES("890", "205892", "_menu_item_object", "page");
INSERT INTO `wpj1_postmeta` VALUES("896", "205558", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("887", "205892", "_menu_item_type", "post_type");
INSERT INTO `wpj1_postmeta` VALUES("888", "205892", "_menu_item_menu_item_parent", "0");
INSERT INTO `wpj1_postmeta` VALUES("1473", "206169", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("2000", "205556", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("1457", "206109", "_edit_lock", "1520057806:1");
INSERT INTO `wpj1_postmeta` VALUES("927", "205934", "_wp_attached_file", "2018/03/Type-Kuta-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("928", "205934", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510324490\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("311", "43", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1455", "206101", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1454", "206101", "_et_pb_module_type", "et_pb_button");
INSERT INTO `wpj1_postmeta` VALUES("885", "205876", "_wp_trash_meta_time", "1519744676");
INSERT INTO `wpj1_postmeta` VALUES("884", "205876", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("883", "205876", "_edit_lock", "1519744650:1");
INSERT INTO `wpj1_postmeta` VALUES("323", "118", "_wp_attached_file", "2018/01/MG_9399.jpg");
INSERT INTO `wpj1_postmeta` VALUES("324", "118", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/01/MG_9399.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9399-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9399-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9399-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9399-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9399-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9399-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9399-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9399-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9399-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9399-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9399-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507898104\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("419", "3910", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:466;s:4:\"file\";s:19:\"2018/01/MG_9094.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9094-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9094-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9094-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9094-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9094-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9094-400x466.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513181636\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("326", "127", "_wp_attached_file", "2018/01/MG_9306-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("327", "127", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:21:\"2018/01/MG_9306-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"MG_9306-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"MG_9306-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"MG_9306-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"MG_9306-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:23:\"MG_9306-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507894401\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("332", "147", "_wp_attached_file", "2018/01/MG_9501.jpg");
INSERT INTO `wpj1_postmeta` VALUES("333", "147", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/01/MG_9501.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9501-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9501-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9501-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9501-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9501-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9501-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9501-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9501-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9501-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9501-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9501-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906580\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("334", "57", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:5:{s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";s:22:\"et-gf-playfair-display\";s:59:\"Playfair+Display:regular,italic,700,700italic,900,900italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:12:\"et-gf-caudex\";s:35:\"Caudex:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("335", "55", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("336", "50", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("337", "47", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("338", "45", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:3:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("339", "53", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("340", "152", "_wp_attached_file", "2018/01/MG_6716.jpg");
INSERT INTO `wpj1_postmeta` VALUES("341", "152", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/01/MG_6716.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6716-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6716-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_6716-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_6716-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6716-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_6716-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6716-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_6716-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_6716-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6716-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_6716-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395213\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("344", "166", "_wp_attached_file", "2018/01/J12B.1-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("345", "166", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:25:\"2018/01/J12B.1-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"J12B.1-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"J12B.1-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"J12B.1-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"J12B.1-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"J12B.1-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513187808\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("346", "167", "_wp_attached_file", "2018/01/O18.2-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("347", "167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:24:\"2018/01/O18.2-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"O18.2-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"O18.2-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"O18.2-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"O18.2-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"O18.2-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513186335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("348", "168", "_wp_attached_file", "2018/01/Q05.5-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("349", "168", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:24:\"2018/01/Q05.5-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Q05.5-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Q05.5-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Q05.5-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Q05.5-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Q05.5-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513186082\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("350", "169", "_wp_attached_file", "2018/01/Q12B.1-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("351", "169", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:334;s:4:\"file\";s:25:\"2018/01/Q12B.1-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Q12B.1-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Q12B.1-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Q12B.1-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Q12B.1-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"Q12B.1-1-of-1-400x334.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185821\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("352", "179", "_wp_attached_file", "2018/01/DD.2-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("353", "179", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:23:\"2018/01/DD.2-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"DD.2-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"DD.2-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"DD.2-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"DD.2-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"DD.2-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513188298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("354", "180", "_wp_attached_file", "2018/01/DD.2-1-of-1-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("355", "180", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:25:\"2018/01/DD.2-1-of-1-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"DD.2-1-of-1-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"DD.2-1-of-1-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"DD.2-1-of-1-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:27:\"DD.2-1-of-1-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513188298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("356", "181", "_wp_attached_file", "2018/01/DD.2-1-of-1-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("357", "181", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:25:\"2018/01/DD.2-1-of-1-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-2-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513188298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("358", "182", "_wp_attached_file", "2018/01/DD.2-1-of-1-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("359", "182", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:25:\"2018/01/DD.2-1-of-1-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-3-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513188298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("360", "183", "_wp_attached_file", "2018/01/R27-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("361", "183", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:22:\"2018/01/R27-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"R27-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"R27-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"R27-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"R27-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"R27-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513186774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("362", "184", "_wp_attached_file", "2018/01/DD.2-1-of-1-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("363", "184", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:25:\"2018/01/DD.2-1-of-1-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"DD.2-1-of-1-4-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513188298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("364", "185", "_wp_attached_file", "2018/01/S6.2-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("365", "185", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:23:\"2018/01/S6.2-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"S6.2-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"S6.2-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"S6.2-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"S6.2-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"S6.2-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513187004\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("366", "186", "_wp_attached_file", "2018/01/R6-1-of-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("367", "186", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:21:\"2018/01/R6-1-of-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"R6-1-of-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"R6-1-of-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"R6-1-of-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"R6-1-of-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"R6-1-of-1-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513187422\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("368", "187", "_wp_attached_file", "2018/01/MG_6720.jpg");
INSERT INTO `wpj1_postmeta` VALUES("369", "187", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:19:\"2018/01/MG_6720.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6720-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6720-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6720-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6720-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395503\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("370", "188", "_wp_attached_file", "2018/01/MG_6821.jpg");
INSERT INTO `wpj1_postmeta` VALUES("371", "188", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:19:\"2018/01/MG_6821.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6821-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6821-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6821-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6821-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6821-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402936\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("372", "189", "_wp_attached_file", "2018/01/MG_6809.jpg");
INSERT INTO `wpj1_postmeta` VALUES("373", "189", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:19:\"2018/01/MG_6809.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6809-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6809-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6809-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6809-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6809-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401637\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("374", "190", "_wp_attached_file", "2018/01/MG_6770.jpg");
INSERT INTO `wpj1_postmeta` VALUES("375", "190", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:19:\"2018/01/MG_6770.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6770-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6770-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6770-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6770-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6770-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400251\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("376", "191", "_wp_attached_file", "2018/01/MG_6779.jpg");
INSERT INTO `wpj1_postmeta` VALUES("377", "191", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:19:\"2018/01/MG_6779.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6779-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6779-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6779-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6779-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6779-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400520\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("378", "196", "_wp_attached_file", "2018/01/051.jpg");
INSERT INTO `wpj1_postmeta` VALUES("379", "196", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:488;s:4:\"file\";s:15:\"2018/01/051.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"051-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"051-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"051-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"051-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"051-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"051-1080x488.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"051-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"051-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"051-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"051-400x488.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:488;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("380", "197", "_wp_attached_file", "2018/01/042.jpg");
INSERT INTO `wpj1_postmeta` VALUES("381", "197", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1064;s:4:\"file\";s:15:\"2018/01/042.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"042-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"042-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"042-768x413.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"042-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"042-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"042-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"042-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"042-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"042-1080x580.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:580;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"042-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("382", "198", "_wp_attached_file", "2018/01/011.png");
INSERT INTO `wpj1_postmeta` VALUES("383", "198", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:15;s:6:\"height\";i:27;s:4:\"file\";s:15:\"2018/01/011.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("384", "199", "_wp_attached_file", "2018/01/021.png");
INSERT INTO `wpj1_postmeta` VALUES("385", "199", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:34;s:6:\"height\";i:27;s:4:\"file\";s:15:\"2018/01/021.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("386", "200", "_wp_attached_file", "2018/01/031.png");
INSERT INTO `wpj1_postmeta` VALUES("387", "200", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:27;s:6:\"height\";i:27;s:4:\"file\";s:15:\"2018/01/031.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("388", "201", "_wp_attached_file", "2018/01/04.png");
INSERT INTO `wpj1_postmeta` VALUES("389", "201", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:29;s:6:\"height\";i:25;s:4:\"file\";s:14:\"2018/01/04.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("390", "202", "_wp_attached_file", "2018/01/05.png");
INSERT INTO `wpj1_postmeta` VALUES("391", "202", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:33;s:6:\"height\";i:25;s:4:\"file\";s:14:\"2018/01/05.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("392", "203", "_wp_attached_file", "2018/01/06.png");
INSERT INTO `wpj1_postmeta` VALUES("393", "203", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:29;s:6:\"height\";i:30;s:4:\"file\";s:14:\"2018/01/06.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("394", "204", "_wp_attached_file", "2018/01/07.png");
INSERT INTO `wpj1_postmeta` VALUES("395", "204", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:25;s:6:\"height\";i:25;s:4:\"file\";s:14:\"2018/01/07.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("396", "205", "_wp_attached_file", "2018/01/08.png");
INSERT INTO `wpj1_postmeta` VALUES("397", "205", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:27;s:6:\"height\";i:27;s:4:\"file\";s:14:\"2018/01/08.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("398", "206", "_wp_attached_file", "2018/01/032.jpg");
INSERT INTO `wpj1_postmeta` VALUES("399", "206", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:377;s:4:\"file\";s:15:\"2018/01/032.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"032-300x57.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"032-768x146.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"032-1024x195.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"032-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"032-1080x377.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"032-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"032-510x377.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"032-1080x206.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"032-400x377.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:377;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("400", "207", "_wp_attached_file", "2018/01/022.jpg");
INSERT INTO `wpj1_postmeta` VALUES("401", "207", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1112;s:4:\"file\";s:15:\"2018/01/022.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"022-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"022-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"022-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"022-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"022-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"022-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"022-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"022-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"022-1080x607.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:607;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"022-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("402", "208", "_wp_attached_file", "2018/01/018.jpg");
INSERT INTO `wpj1_postmeta` VALUES("403", "208", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1988;s:6:\"height\";i:1075;s:4:\"file\";s:15:\"2018/01/018.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"018-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"018-768x415.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"018-1024x554.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"018-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"018-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"018-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"018-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"018-1080x584.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"018-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("404", "209", "_wp_attached_file", "2018/01/02.png");
INSERT INTO `wpj1_postmeta` VALUES("405", "209", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:57;s:6:\"height\";i:57;s:4:\"file\";s:14:\"2018/01/02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("406", "210", "_wp_attached_file", "2018/01/03.png");
INSERT INTO `wpj1_postmeta` VALUES("407", "210", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:41;s:6:\"height\";i:64;s:4:\"file\";s:14:\"2018/01/03.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("408", "3905", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("409", "3904", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("410", "3903", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("411", "3902", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("412", "3901", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("413", "3900", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("414", "3899", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("415", "3898", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("416", "3897", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("417", "3896", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("422", "3923", "_wp_attached_file", "2018/01/MG_9138.jpg");
INSERT INTO `wpj1_postmeta` VALUES("423", "3923", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:19:\"2018/01/MG_9138.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9138-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9138-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9138-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9138-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9138-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513183236\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("418", "3910", "_wp_attached_file", "2018/01/MG_9094.jpg");
INSERT INTO `wpj1_postmeta` VALUES("2001", "205556", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205556\" /]");
INSERT INTO `wpj1_postmeta` VALUES("421", "3918", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("424", "3925", "_wp_attached_file", "2018/01/MG_9136.jpg");
INSERT INTO `wpj1_postmeta` VALUES("425", "3925", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/01/MG_9136.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9136-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9136-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9136-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9136-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9136-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9136-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9136-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513183220\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("427", "3928", "_wp_attached_file", "2018/01/MG_9147.jpg");
INSERT INTO `wpj1_postmeta` VALUES("428", "3928", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:19:\"2018/01/MG_9147.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9147-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9147-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9147-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9147-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9147-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9147-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9147-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184771\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("429", "3929", "_wp_attached_file", "2018/01/MG_9522.jpg");
INSERT INTO `wpj1_postmeta` VALUES("430", "3929", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/01/MG_9522.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9522-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9522-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9522-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9522-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9522-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9522-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9522-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9522-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9522-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9522-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9522-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979329\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("611", "205401", "_wp_attached_file", "2018/01/restaurant-hero-03.jpg");
INSERT INTO `wpj1_postmeta` VALUES("612", "205401", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2018/01/restaurant-hero-03.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-03-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-03-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("437", "3935", "_wp_attached_file", "2018/01/header-bg-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("438", "3935", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:978;s:4:\"file\";s:23:\"2018/01/header-bg-3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"header-bg-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"header-bg-3-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"header-bg-3-768x391.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"header-bg-3-1024x522.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"header-bg-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"header-bg-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"header-bg-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"header-bg-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"header-bg-3-1080x550.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"header-bg-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("439", "3936", "_wp_attached_file", "2018/01/icon-service-1.png");
INSERT INTO `wpj1_postmeta` VALUES("440", "3936", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2018/01/icon-service-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("441", "3937", "_wp_attached_file", "2018/01/icon-service-2.png");
INSERT INTO `wpj1_postmeta` VALUES("442", "3937", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2018/01/icon-service-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("443", "3938", "_wp_attached_file", "2018/01/icon-service-3.png");
INSERT INTO `wpj1_postmeta` VALUES("444", "3938", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2018/01/icon-service-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("445", "3939", "_wp_attached_file", "2018/01/logo-grid.jpg");
INSERT INTO `wpj1_postmeta` VALUES("446", "3939", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:127;s:4:\"file\";s:21:\"2018/01/logo-grid.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-grid-150x127.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-grid-300x35.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"logo-grid-768x90.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"logo-grid-1024x120.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"logo-grid-400x127.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"logo-grid-1080x127.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"logo-grid-400x127.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"logo-grid-510x127.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"logo-grid-1080x127.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"logo-grid-400x127.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:127;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("447", "3940", "_wp_attached_file", "2018/01/laptop-right-overflow_2x.png");
INSERT INTO `wpj1_postmeta` VALUES("448", "3940", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1180;s:4:\"file\";s:36:\"2018/01/laptop-right-overflow_2x.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-768x564.png\";s:5:\"width\";i:768;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"laptop-right-overflow_2x-1024x751.png\";s:5:\"width\";i:1024;s:6:\"height\";i:751;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"laptop-right-overflow_2x-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"laptop-right-overflow_2x-1080x793.png\";s:5:\"width\";i:1080;s:6:\"height\";i:793;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"laptop-right-overflow_2x-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("449", "3941", "_wp_attached_file", "2018/01/phone-portrait-white.png");
INSERT INTO `wpj1_postmeta` VALUES("450", "3941", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:331;s:6:\"height\";i:672;s:4:\"file\";s:32:\"2018/01/phone-portrait-white.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"phone-portrait-white-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"phone-portrait-white-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"phone-portrait-white-331x250.png\";s:5:\"width\";i:331;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"phone-portrait-white-331x284.png\";s:5:\"width\";i:331;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"phone-portrait-white-331x382.png\";s:5:\"width\";i:331;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"phone-portrait-white-331x516.png\";s:5:\"width\";i:331;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("451", "3942", "_wp_attached_file", "2018/01/web-design-background-01.jpg");
INSERT INTO `wpj1_postmeta` VALUES("452", "3942", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1707;s:4:\"file\";s:36:\"2018/01/web-design-background-01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-768x683.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"web-design-background-01-1024x910.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"web-design-background-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"web-design-background-01-1080x960.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"web-design-background-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("453", "3943", "_wp_attached_file", "2018/01/video-overlay.jpg");
INSERT INTO `wpj1_postmeta` VALUES("454", "3943", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:25:\"2018/01/video-overlay.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"video-overlay-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"video-overlay-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"video-overlay-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"video-overlay-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"video-overlay-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"video-overlay-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"video-overlay-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("455", "3944", "_wp_attached_file", "2018/01/process-icon-2.png");
INSERT INTO `wpj1_postmeta` VALUES("456", "3944", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/process-icon-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("457", "3945", "_wp_attached_file", "2018/01/process-icon-1.png");
INSERT INTO `wpj1_postmeta` VALUES("458", "3945", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/process-icon-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("459", "3946", "_wp_attached_file", "2018/01/process-icon-3.png");
INSERT INTO `wpj1_postmeta` VALUES("460", "3946", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/process-icon-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("461", "3947", "_wp_attached_file", "2018/01/process-icon-4.png");
INSERT INTO `wpj1_postmeta` VALUES("462", "3947", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/process-icon-4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("463", "3948", "_wp_attached_file", "2018/01/section-background.jpg");
INSERT INTO `wpj1_postmeta` VALUES("464", "3948", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1167;s:4:\"file\";s:30:\"2018/01/section-background.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"section-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"section-background-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"section-background-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"section-background-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"section-background-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"section-background-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"section-background-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"section-background-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"section-background-1080x656.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"section-background-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("465", "3949", "_wp_attached_file", "2018/01/web-design-background-02.jpg");
INSERT INTO `wpj1_postmeta` VALUES("466", "3949", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:575;s:4:\"file\";s:36:\"2018/01/web-design-background-02.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-background-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"web-design-background-02-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"web-design-background-02-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"web-design-background-02-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"web-design-background-02-1080x575.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"web-design-background-02-1080x323.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"web-design-background-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("467", "3950", "_wp_attached_file", "2018/01/web-agency-illustration_02.png");
INSERT INTO `wpj1_postmeta` VALUES("468", "3950", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:795;s:4:\"file\";s:38:\"2018/01/web-agency-illustration_02.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-300x298.png\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-768x763.png\";s:5:\"width\";i:768;s:6:\"height\";i:763;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_02-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("469", "3951", "_wp_attached_file", "2018/01/web-agency-illustration_01.png");
INSERT INTO `wpj1_postmeta` VALUES("470", "3951", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:646;s:4:\"file\";s:38:\"2018/01/web-agency-illustration_01.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-768x620.png\";s:5:\"width\";i:768;s:6:\"height\";i:620;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"web-agency-illustration_01-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("471", "3952", "_wp_attached_file", "2018/01/pricing-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("472", "3952", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2018/01/pricing-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"pricing-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"pricing-3-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"pricing-3-768x459.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:459;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"pricing-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"pricing-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"pricing-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"pricing-3-400x478.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:478;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("473", "3953", "_wp_attached_file", "2018/01/project-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("474", "3953", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-1-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-1-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("475", "3954", "_wp_attached_file", "2018/01/project-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("476", "3954", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-6.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-6-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-6-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-6-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("477", "3955", "_wp_attached_file", "2018/01/project-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("478", "3955", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-2-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-2-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-2-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("479", "3956", "_wp_attached_file", "2018/01/web-design-background-03.jpg");
INSERT INTO `wpj1_postmeta` VALUES("480", "3956", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:650;s:4:\"file\";s:36:\"2018/01/web-design-background-03.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-300x102.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-768x260.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"web-design-background-03-1024x347.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"web-design-background-03-1080x650.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"web-design-background-03-1080x366.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"web-design-background-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("481", "3957", "_wp_attached_file", "2018/01/web-design-01.jpg");
INSERT INTO `wpj1_postmeta` VALUES("482", "3957", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:901;s:4:\"file\";s:25:\"2018/01/web-design-01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"web-design-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"web-design-01-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"web-design-01-768x641.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"web-design-01-1024x854.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"web-design-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"web-design-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"web-design-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"web-design-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"web-design-01-1080x901.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:901;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"web-design-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("483", "3958", "_wp_attached_file", "2018/01/section-background-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("484", "3958", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:902;s:4:\"file\";s:32:\"2018/01/section-background-3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"section-background-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"section-background-3-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"section-background-3-768x361.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"section-background-3-1024x481.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"section-background-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"section-background-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"section-background-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"section-background-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"section-background-3-1080x507.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"section-background-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("717", "205478", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1493", "205560", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("715", "205477", "_wp_attached_file", "2018/01/MG_9386.jpg");
INSERT INTO `wpj1_postmeta` VALUES("710", "57", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("711", "57", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("712", "57", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"57\" /]");
INSERT INTO `wpj1_postmeta` VALUES("713", "205469", "_et_pb_module_type", "et_pb_text");
INSERT INTO `wpj1_postmeta` VALUES("714", "205469", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("716", "205477", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/01/MG_9386.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9386-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9386-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9386-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9386-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9386-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9386-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9386-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9386-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9386-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9386-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9386-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507897654\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("491", "3962", "_wp_attached_file", "2018/01/header-bg-3-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("492", "3962", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1167;s:4:\"file\";s:25:\"2018/01/header-bg-3-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"header-bg-3-1-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"header-bg-3-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"header-bg-3-1-1080x656.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"header-bg-3-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("493", "3963", "_wp_attached_file", "2018/01/section-background-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("494", "3963", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1640;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2018/01/section-background-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"section-background-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"section-background-2-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"section-background-2-768x375.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"section-background-2-1024x500.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"section-background-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"section-background-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"section-background-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"section-background-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"section-background-2-1080x527.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"section-background-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("495", "3964", "_wp_attached_file", "2018/01/image-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("496", "3964", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:964;s:4:\"file\";s:19:\"2018/01/image-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image-4-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"image-4-768x925.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:925;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"image-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"image-4-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"image-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"image-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"image-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("497", "3965", "_wp_attached_file", "2018/01/web-design-bg-texture_01.jpg");
INSERT INTO `wpj1_postmeta` VALUES("498", "3965", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:718;s:6:\"height\";i:566;s:4:\"file\";s:36:\"2018/01/web-design-bg-texture_01.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_01-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("499", "3966", "_wp_attached_file", "2018/01/web-design-bg-texture_03.jpg");
INSERT INTO `wpj1_postmeta` VALUES("500", "3966", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:568;s:4:\"file\";s:36:\"2018/01/web-design-bg-texture_03.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_03-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("501", "3967", "_wp_attached_file", "2018/01/web-design-bg-texture_02.jpg");
INSERT INTO `wpj1_postmeta` VALUES("502", "3967", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:718;s:6:\"height\";i:566;s:4:\"file\";s:36:\"2018/01/web-design-bg-texture_02.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_02-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"web-design-bg-texture_02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("503", "3968", "_wp_attached_file", "2018/01/office-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("504", "3968", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:620;s:6:\"height\";i:620;s:4:\"file\";s:20:\"2018/01/office-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"office-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"office-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"office-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"office-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"office-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"office-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("505", "3969", "_wp_attached_file", "2018/01/office-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("506", "3969", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:620;s:6:\"height\";i:620;s:4:\"file\";s:20:\"2018/01/office-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"office-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"office-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"office-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"office-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"office-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"office-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("507", "3970", "_wp_attached_file", "2018/01/office-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("508", "3970", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:620;s:6:\"height\";i:620;s:4:\"file\";s:20:\"2018/01/office-3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"office-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"office-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"office-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"office-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"office-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"office-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("509", "3971", "_wp_attached_file", "2018/01/icon-benefit-1.png");
INSERT INTO `wpj1_postmeta` VALUES("510", "3971", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/icon-benefit-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("511", "3972", "_wp_attached_file", "2018/01/icon-benefit-4.png");
INSERT INTO `wpj1_postmeta` VALUES("512", "3972", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/icon-benefit-4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("513", "3973", "_wp_attached_file", "2018/01/icon-benefit-3.png");
INSERT INTO `wpj1_postmeta` VALUES("514", "3973", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/icon-benefit-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("515", "3974", "_wp_attached_file", "2018/01/icon-benefit-2.png");
INSERT INTO `wpj1_postmeta` VALUES("516", "3974", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/icon-benefit-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("517", "3975", "_wp_attached_file", "2018/01/icon-benefit-6.png");
INSERT INTO `wpj1_postmeta` VALUES("518", "3975", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/icon-benefit-6.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("519", "3976", "_wp_attached_file", "2018/01/icon-benefit-5.png");
INSERT INTO `wpj1_postmeta` VALUES("520", "3976", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:26:\"2018/01/icon-benefit-5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("521", "3977", "_wp_attached_file", "2018/01/project-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("522", "3977", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-9.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-9-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-9-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-9-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("523", "3978", "_wp_attached_file", "2018/01/project-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("524", "3978", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-3-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-3-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-3-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("525", "3979", "_wp_attached_file", "2018/01/project-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("526", "3979", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-4-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-4-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-4-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("527", "3980", "_wp_attached_file", "2018/01/project-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("528", "3980", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-5.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-5-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-5-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-5-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("529", "3981", "_wp_attached_file", "2018/01/project-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("530", "3981", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-7.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-7-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-7-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-7-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("531", "3982", "_wp_attached_file", "2018/01/project-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("532", "3982", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1009;s:4:\"file\";s:21:\"2018/01/project-8.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"project-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"project-8-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"project-8-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"project-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"project-8-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"project-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"project-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"project-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("533", "205400", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("534", "205400", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("535", "205400", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("536", "205400", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("537", "205400", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("538", "205400", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("539", "205400", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("540", "205400", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("541", "205400", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("542", "205400", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("543", "205400", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205400\" /]");
INSERT INTO `wpj1_postmeta` VALUES("544", "205399", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("545", "205399", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("546", "205399", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("547", "205399", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("548", "205399", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("549", "205399", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("550", "205399", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("551", "205399", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("552", "205399", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("553", "205399", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("554", "205399", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205399\" /]");
INSERT INTO `wpj1_postmeta` VALUES("555", "205398", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("556", "205398", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("557", "205398", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("558", "205398", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("559", "205398", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("560", "205398", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("561", "205398", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("562", "205398", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("563", "205398", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("564", "205398", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("565", "205398", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205398\" /]");
INSERT INTO `wpj1_postmeta` VALUES("566", "205397", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("567", "205397", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("568", "205397", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("569", "205397", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("570", "205397", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("571", "205397", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("572", "205397", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("573", "205397", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("574", "205397", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("575", "205397", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("576", "205397", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205397\" /]");
INSERT INTO `wpj1_postmeta` VALUES("577", "205397", "_et_pb_color_palette", "#000000|#FFFFFF|#E02B20|#E09900|#EDF000|#7CDA24|#0C71C3|#8300E9");
INSERT INTO `wpj1_postmeta` VALUES("578", "205396", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("579", "205396", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("580", "205396", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("581", "205396", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("582", "205396", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("583", "205396", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("584", "205396", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("585", "205396", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("586", "205396", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("587", "205396", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("588", "205396", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205396\" /]");
INSERT INTO `wpj1_postmeta` VALUES("589", "205395", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("590", "205395", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("591", "205395", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("592", "205395", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("593", "205395", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("594", "205395", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("595", "205395", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("596", "205395", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("597", "205395", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("598", "205395", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("599", "205395", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205395\" /]");
INSERT INTO `wpj1_postmeta` VALUES("600", "205394", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("601", "205394", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("602", "205394", "_et_builder_version", "VB|Divi|3.0.93");
INSERT INTO `wpj1_postmeta` VALUES("603", "205394", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("604", "205394", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("605", "205394", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("606", "205394", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("607", "205394", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("608", "205394", "_et_pb_ab_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("609", "205394", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("610", "205394", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205394\" /]");
INSERT INTO `wpj1_postmeta` VALUES("613", "205402", "_wp_attached_file", "2018/01/food-09.jpg");
INSERT INTO `wpj1_postmeta` VALUES("614", "205402", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:512;s:6:\"height\";i:768;s:4:\"file\";s:19:\"2018/01/food-09.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-09-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-09-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"food-09-512x675.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-09-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-09-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-09-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("615", "205403", "_wp_attached_file", "2018/01/restaurant-hero-04.jpg");
INSERT INTO `wpj1_postmeta` VALUES("616", "205403", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2018/01/restaurant-hero-04.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-04-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-04-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("617", "205404", "_wp_attached_file", "2018/01/stars.png");
INSERT INTO `wpj1_postmeta` VALUES("618", "205404", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:144;s:6:\"height\";i:23;s:4:\"file\";s:17:\"2018/01/stars.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("619", "30243", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("620", "205405", "_wp_attached_file", "2018/01/restaurant-hero-02.jpg");
INSERT INTO `wpj1_postmeta` VALUES("621", "205405", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1337;s:4:\"file\";s:30:\"2018/01/restaurant-hero-02.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-02-1024x713.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-02-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-02-1080x752.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("622", "30228", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("623", "205406", "_wp_attached_file", "2018/01/restaurant-hero-07.jpg");
INSERT INTO `wpj1_postmeta` VALUES("624", "205406", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2018/01/restaurant-hero-07.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-07-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-07-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-07-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-07-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("625", "205407", "_wp_attached_file", "2018/01/food_produce_235-e1506468905186.jpg");
INSERT INTO `wpj1_postmeta` VALUES("626", "205407", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:43:\"2018/01/food_produce_235-e1506468905186.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-500x675.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"food_produce_235-e1506468905186-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:16:\"Radostina Boseva\";s:6:\"camera\";s:8:\"NIKON D5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1504780443\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("627", "30217", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("628", "205408", "_wp_attached_file", "2018/01/food-01.jpg");
INSERT INTO `wpj1_postmeta` VALUES("629", "205408", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-01.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-01-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-01-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-01-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("630", "205409", "_wp_attached_file", "2018/01/food-02.jpg");
INSERT INTO `wpj1_postmeta` VALUES("631", "205409", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-02.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-02-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-02-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-02-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("632", "205410", "_wp_attached_file", "2018/01/food-08.jpg");
INSERT INTO `wpj1_postmeta` VALUES("633", "205410", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-08.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-08-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-08-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-08-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-08-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-08-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-08-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("634", "205411", "_wp_attached_file", "2018/01/food-06.jpg");
INSERT INTO `wpj1_postmeta` VALUES("635", "205411", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-06.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-06-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-06-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-06-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-06-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-06-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-06-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("636", "205412", "_wp_attached_file", "2018/01/food-05.jpg");
INSERT INTO `wpj1_postmeta` VALUES("637", "205412", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-05.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-05-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-05-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-05-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-05-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("638", "205413", "_wp_attached_file", "2018/01/food-17.jpg");
INSERT INTO `wpj1_postmeta` VALUES("639", "205413", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-17.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-17-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-17-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-17-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("640", "205414", "_wp_attached_file", "2018/01/food-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("641", "205414", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-13-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-13-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-13-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("642", "205415", "_wp_attached_file", "2018/01/food-19.jpg");
INSERT INTO `wpj1_postmeta` VALUES("643", "205415", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-19.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-19-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-19-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-19-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("644", "205416", "_wp_attached_file", "2018/01/food-20.jpg");
INSERT INTO `wpj1_postmeta` VALUES("645", "205416", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-20.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-20-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-20-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-20-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-20-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-20-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-20-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("646", "205417", "_wp_attached_file", "2018/01/food-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("647", "205417", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-12.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-12-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-12-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-12-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("648", "205418", "_wp_attached_file", "2018/01/food-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("649", "205418", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-15.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-15-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-15-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-15-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("650", "205419", "_wp_attached_file", "2018/01/food-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("651", "205419", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-11-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-11-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-11-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("652", "205420", "_wp_attached_file", "2018/01/food-18.jpg");
INSERT INTO `wpj1_postmeta` VALUES("653", "205420", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-18.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-18-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-18-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-18-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("654", "205421", "_wp_attached_file", "2018/01/food-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("655", "205421", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-16.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-16-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-16-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-16-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("656", "205422", "_wp_attached_file", "2018/01/food-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("657", "205422", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-14.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-14-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-14-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-14-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("658", "205423", "_wp_attached_file", "2018/01/food-21.jpg");
INSERT INTO `wpj1_postmeta` VALUES("659", "205423", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-21.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-21-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-21-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-21-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-21-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-21-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-21-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("660", "30218", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("661", "205424", "_wp_attached_file", "2018/01/restaurant-hero-01.jpg");
INSERT INTO `wpj1_postmeta` VALUES("662", "205424", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2018/01/restaurant-hero-01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-01-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-01-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("663", "205425", "_wp_attached_file", "2018/01/kitchen.jpg");
INSERT INTO `wpj1_postmeta` VALUES("664", "205425", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:512;s:6:\"height\";i:341;s:4:\"file\";s:19:\"2018/01/kitchen.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"kitchen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"kitchen-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"kitchen-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"kitchen-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"kitchen-510x341.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"kitchen-400x341.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:341;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("665", "30214", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("666", "205426", "_wp_attached_file", "2018/01/food-07.jpg");
INSERT INTO `wpj1_postmeta` VALUES("667", "205426", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-07.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-07-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-07-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-07-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-07-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-07-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-07-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("668", "205427", "_wp_attached_file", "2018/01/food-04.jpg");
INSERT INTO `wpj1_postmeta` VALUES("669", "205427", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-04.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-04-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-04-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-04-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("670", "205428", "_wp_attached_file", "2018/01/food-03.jpg");
INSERT INTO `wpj1_postmeta` VALUES("671", "205428", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:510;s:4:\"file\";s:19:\"2018/01/food-03.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"food-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"food-03-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"food-03-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"food-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"food-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"food-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"food-03-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("672", "30213", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("673", "205429", "_wp_attached_file", "2018/01/restaurant-hero-08.jpg");
INSERT INTO `wpj1_postmeta` VALUES("674", "205429", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1164;s:4:\"file\";s:30:\"2018/01/restaurant-hero-08.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-768x466.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-08-1024x621.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:621;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-08-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"restaurant-hero-08-1080x655.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"restaurant-hero-08-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("675", "30251", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("707", "205456", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("708", "205456", "_et_pb_excluded_global_options", "[]");
INSERT INTO `wpj1_postmeta` VALUES("751", "45", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("1999", "205556", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("753", "45", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"45\" /]");
INSERT INTO `wpj1_postmeta` VALUES("720", "205495", "_et_pb_module_type", "et_pb_text");
INSERT INTO `wpj1_postmeta` VALUES("721", "205495", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("740", "205516", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("829", "205573", "_wp_attached_file", "2018/02/bedroom.jpg");
INSERT INTO `wpj1_postmeta` VALUES("723", "205500", "_wp_attached_file", "2018/01/MG_9098.jpg");
INSERT INTO `wpj1_postmeta` VALUES("724", "205500", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:19:\"2018/01/MG_9098.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9098-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9098-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"MG_9098-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9098-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9098-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9098-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9098-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9098-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"MG_9098-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9098-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9098-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513181829\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("682", "205441", "_wp_attached_file", "2018/01/Rectangle-5-bitmap.jpg");
INSERT INTO `wpj1_postmeta` VALUES("683", "205441", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1197;s:6:\"height\";i:700;s:4:\"file\";s:30:\"2018/01/Rectangle-5-bitmap.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-768x449.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Rectangle-5-bitmap-1024x599.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Rectangle-5-bitmap-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Rectangle-5-bitmap-1080x632.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Rectangle-5-bitmap-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("684", "205442", "_wp_attached_file", "2018/01/property1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("685", "205442", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:460;s:6:\"height\";i:460;s:4:\"file\";s:21:\"2018/01/property1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"property1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"property1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"property1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"property1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"property1-460x382.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"property1-400x460.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:460;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("686", "205443", "_wp_attached_file", "2018/01/property2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("687", "205443", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:460;s:6:\"height\";i:460;s:4:\"file\";s:21:\"2018/01/property2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"property2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"property2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"property2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"property2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"property2-460x382.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"property2-400x460.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:460;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("688", "205444", "_wp_attached_file", "2018/01/property3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("689", "205444", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:460;s:6:\"height\";i:460;s:4:\"file\";s:21:\"2018/01/property3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"property3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"property3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"property3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"property3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"property3-460x382.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"property3-400x460.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:460;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("690", "205445", "_wp_attached_file", "2018/01/map-point.png");
INSERT INTO `wpj1_postmeta` VALUES("691", "205445", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:16;s:6:\"height\";i:22;s:4:\"file\";s:21:\"2018/01/map-point.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("692", "205446", "_wp_attached_file", "2018/01/buildings.png");
INSERT INTO `wpj1_postmeta` VALUES("693", "205446", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:33;s:6:\"height\";i:22;s:4:\"file\";s:21:\"2018/01/buildings.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("694", "205447", "_wp_attached_file", "2018/01/buildings-1.png");
INSERT INTO `wpj1_postmeta` VALUES("695", "205447", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:21;s:4:\"file\";s:23:\"2018/01/buildings-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("696", "205448", "_wp_attached_file", "2018/01/transport.png");
INSERT INTO `wpj1_postmeta` VALUES("697", "205448", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:31;s:4:\"file\";s:21:\"2018/01/transport.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("698", "205449", "_wp_attached_file", "2018/01/money-bills.png");
INSERT INTO `wpj1_postmeta` VALUES("699", "205449", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:32;s:6:\"height\";i:15;s:4:\"file\";s:23:\"2018/01/money-bills.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("700", "205450", "_wp_attached_file", "2018/01/Group-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("701", "205450", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1197;s:6:\"height\";i:341;s:4:\"file\";s:19:\"2018/01/Group-4.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Group-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Group-4-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Group-4-768x219.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Group-4-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Group-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Group-4-1080x341.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Group-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Group-4-510x341.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Group-4-1080x308.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Group-4-400x341.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:341;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("728", "55", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("1161", "206060", "_wc_review_count", "0");
INSERT INTO `wpj1_postmeta` VALUES("730", "55", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"55\" /]");
INSERT INTO `wpj1_postmeta` VALUES("731", "205508", "_wp_attached_file", "2018/01/MG_9521.jpg");
INSERT INTO `wpj1_postmeta` VALUES("732", "205508", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2573;s:6:\"height\";i:4229;s:4:\"file\";s:19:\"2018/01/MG_9521.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9521-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9521-183x300.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"MG_9521-768x1262.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9521-623x1024.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9521-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9521-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9521-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9521-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"MG_9521-1080x1775.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9521-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9521-2573x1800.jpg\";s:5:\"width\";i:2573;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979308\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("741", "205520", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("830", "205573", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1132;s:4:\"file\";s:19:\"2018/02/bedroom.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bedroom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"bedroom-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"bedroom-768x1087.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1087;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"bedroom-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"bedroom-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"bedroom-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"bedroom-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"bedroom-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"bedroom-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("725", "53", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("727", "53", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"53\" /]");
INSERT INTO `wpj1_postmeta` VALUES("706", "524", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("735", "205513", "_wp_attached_file", "2018/01/MG_6619.jpg");
INSERT INTO `wpj1_postmeta` VALUES("736", "205513", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:19:\"2018/01/MG_6619.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6619-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6619-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"MG_6619-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_6619-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6619-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_6619-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6619-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_6619-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"MG_6619-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6619-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_6619-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510311955\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("737", "47", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("739", "47", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"47\" /]");
INSERT INTO `wpj1_postmeta` VALUES("1492", "206218", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("755", "205552", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("756", "205552", "_edit_lock", "1519126771:1");
INSERT INTO `wpj1_postmeta` VALUES("757", "205552", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("758", "205552", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("759", "205552", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1482", "206050", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1458", "206109", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("828", "205569", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("754", "1", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("760", "205552", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("761", "205552", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("762", "205552", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("763", "205552", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("764", "205552", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("765", "205552", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("766", "205552", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("767", "205554", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("768", "205554", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("769", "205554", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("770", "205554", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("771", "205554", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("772", "205554", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("773", "205554", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("774", "205554", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("775", "205554", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("776", "205554", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("777", "205554", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("778", "205554", "_edit_lock", "1520787625:1");
INSERT INTO `wpj1_postmeta` VALUES("779", "205556", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("780", "205556", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("781", "205556", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("782", "205556", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("783", "205556", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("784", "205556", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("785", "205556", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("786", "205556", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("787", "205556", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("788", "205556", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("789", "205556", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("790", "205556", "_edit_lock", "1520240520:1");
INSERT INTO `wpj1_postmeta` VALUES("791", "205558", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("792", "205558", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("793", "205558", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("794", "205558", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("795", "205558", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("796", "205558", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("797", "205558", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("798", "205558", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("799", "205558", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("800", "205558", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("801", "205558", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("802", "205558", "_edit_lock", "1521538615:1");
INSERT INTO `wpj1_postmeta` VALUES("803", "205560", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("804", "205560", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("805", "205560", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("806", "205560", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("807", "205560", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("808", "205560", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("809", "205560", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("810", "205560", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("811", "205560", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("812", "205560", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("813", "205560", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("814", "205560", "_edit_lock", "1520242482:1");
INSERT INTO `wpj1_postmeta` VALUES("815", "205562", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("816", "205562", "_edit_lock", "1520788336:1");
INSERT INTO `wpj1_postmeta` VALUES("817", "205562", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("818", "205562", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("819", "205562", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("820", "205562", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("821", "205562", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("822", "205562", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("823", "205562", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("824", "205562", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("825", "205562", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("826", "205562", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("827", "205562", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("842", "205840", "_et_pb_row_layout", "1_4,1_4,1_4,1_4");
INSERT INTO `wpj1_postmeta` VALUES("843", "205840", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("844", "205841", "_et_pb_row_layout", "1_4,1_4,1_4,1_4");
INSERT INTO `wpj1_postmeta` VALUES("845", "205841", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("831", "205574", "_wp_attached_file", "2018/02/number-icons_1.png");
INSERT INTO `wpj1_postmeta` VALUES("832", "205574", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:56;s:6:\"height\";i:56;s:4:\"file\";s:26:\"2018/02/number-icons_1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("833", "205575", "_wp_attached_file", "2018/02/number-icons_2.png");
INSERT INTO `wpj1_postmeta` VALUES("834", "205575", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:56;s:6:\"height\";i:56;s:4:\"file\";s:26:\"2018/02/number-icons_2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("835", "205576", "_wp_attached_file", "2018/02/number-icons_3.png");
INSERT INTO `wpj1_postmeta` VALUES("836", "205576", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:56;s:6:\"height\";i:56;s:4:\"file\";s:26:\"2018/02/number-icons_3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("837", "205577", "_wp_attached_file", "2018/02/section-bg-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("838", "205577", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:644;s:4:\"file\";s:24:\"2018/02/section-bg-5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"section-bg-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"section-bg-5-300x242.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"section-bg-5-768x618.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"section-bg-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"section-bg-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"section-bg-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"section-bg-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("839", "205578", "_wp_attached_file", "2018/02/section-bg-2-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("840", "205578", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:741;s:4:\"file\";s:26:\"2018/02/section-bg-2-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-768x296.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"section-bg-2-1-1024x395.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"section-bg-2-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"section-bg-2-1-1080x417.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"section-bg-2-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("841", "205835", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("846", "205845", "_wp_attached_file", "2018/02/MG_6988.jpg");
INSERT INTO `wpj1_postmeta` VALUES("847", "205845", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_6988.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6988-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6988-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_6988-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_6988-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6988-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_6988-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6988-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_6988-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_6988-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6988-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_6988-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511350680\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("848", "205846", "_wp_attached_file", "2018/02/MG_6988-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("849", "205846", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:21:\"2018/02/MG_6988-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"MG_6988-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"MG_6988-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"MG_6988-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"MG_6988-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:23:\"MG_6988-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511350680\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("850", "205562", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("852", "205562", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205562\" /]");
INSERT INTO `wpj1_postmeta` VALUES("853", "205851", "_wp_attached_file", "2018/02/MG_7033.jpg");
INSERT INTO `wpj1_postmeta` VALUES("854", "205851", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_7033.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_7033-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_7033-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_7033-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_7033-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_7033-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_7033-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_7033-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_7033-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_7033-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_7033-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_7033-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353123\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("855", "205852", "_wp_attached_file", "2018/02/MG_7034.jpg");
INSERT INTO `wpj1_postmeta` VALUES("856", "205852", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_7034.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_7034-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_7034-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_7034-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_7034-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_7034-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_7034-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_7034-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_7034-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_7034-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_7034-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_7034-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353159\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("857", "205853", "_wp_attached_file", "2018/02/MG_7035.jpg");
INSERT INTO `wpj1_postmeta` VALUES("858", "205853", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_7035.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_7035-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_7035-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_7035-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_7035-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_7035-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_7035-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_7035-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_7035-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_7035-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_7035-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_7035-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353183\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("859", "205854", "_wp_attached_file", "2018/02/MG_7036.jpg");
INSERT INTO `wpj1_postmeta` VALUES("860", "205854", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_7036.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_7036-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_7036-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_7036-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_7036-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_7036-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_7036-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_7036-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_7036-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_7036-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_7036-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_7036-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353195\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("861", "205855", "_wp_attached_file", "2018/02/MG_7037.jpg");
INSERT INTO `wpj1_postmeta` VALUES("862", "205855", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_7037.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_7037-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_7037-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_7037-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_7037-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_7037-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_7037-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_7037-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_7037-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_7037-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_7037-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_7037-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353217\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("863", "205858", "_wp_attached_file", "2018/02/MG_6604.jpg");
INSERT INTO `wpj1_postmeta` VALUES("864", "205858", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_6604.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6604-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6604-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_6604-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_6604-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6604-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_6604-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6604-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_6604-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_6604-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6604-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_6604-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310931\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1955", "206442", "_et_pb_module_type", "et_pb_slider");
INSERT INTO `wpj1_postmeta` VALUES("1956", "206442", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("865", "205859", "_wp_attached_file", "2018/02/MG_6681.jpg");
INSERT INTO `wpj1_postmeta` VALUES("866", "205859", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_6681.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_6681-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_6681-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_6681-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_6681-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_6681-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_6681-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_6681-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_6681-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_6681-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_6681-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_6681-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510324915\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("867", "205860", "_et_pb_row_layout", "1_4,1_4,1_4,1_4");
INSERT INTO `wpj1_postmeta` VALUES("868", "205860", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("869", "205861", "_wp_attached_file", "2018/02/MG_9532.jpg");
INSERT INTO `wpj1_postmeta` VALUES("870", "205861", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_9532.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9532-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9532-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9532-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9532-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9532-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979551\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("871", "205862", "_wp_attached_file", "2018/02/MG_9669.jpg");
INSERT INTO `wpj1_postmeta` VALUES("872", "205862", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_9669.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9669-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9669-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9669-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9669-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9669-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9669-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9669-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9669-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9669-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9669-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9669-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988356\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("873", "205863", "_wp_attached_file", "2018/02/MG_6604-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("874", "205863", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:21:\"2018/02/MG_6604-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"MG_6604-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"MG_6604-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"MG_6604-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"MG_6604-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:23:\"MG_6604-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310931\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("875", "205864", "_wp_attached_file", "2018/02/MG_9386.jpg");
INSERT INTO `wpj1_postmeta` VALUES("876", "205864", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/02/MG_9386.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"MG_9386-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"MG_9386-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"MG_9386-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"MG_9386-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"MG_9386-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"MG_9386-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"MG_9386-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"MG_9386-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"MG_9386-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"MG_9386-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"MG_9386-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507897654\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("877", "205554", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("878", "205552", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1971", "206375", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1972", "206375", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1488", "206206", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2022", "206530", "_maximum_occupancy", "2");
INSERT INTO `wpj1_postmeta` VALUES("1479", "205554", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("1489", "205556", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1481", "205554", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205554\" /]");
INSERT INTO `wpj1_postmeta` VALUES("898", "205901", "_mail", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:33:\"Panbil Residence \"[your-subject]\"\";s:6:\"sender\";s:52:\"[first-name] [last-name] <admin@panbilresidence.com>\";s:9:\"recipient\";s:25:\"admin@panbilresidence.com\";s:4:\"body\";s:194:\"From: [first-name] [last-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Panbil Residence (http://panbilresidence.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpj1_postmeta` VALUES("899", "205901", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Panbil Residence \"[your-subject]\"\";s:6:\"sender\";s:44:\"Panbil Residence <admin@panbilresidence.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:123:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Panbil Residence (http://panbilresidence.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: admin@panbilresidence.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpj1_postmeta` VALUES("900", "205901", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}");
INSERT INTO `wpj1_postmeta` VALUES("901", "205901", "_additional_settings", "");
INSERT INTO `wpj1_postmeta` VALUES("902", "205901", "_locale", "en_US");
INSERT INTO `wpj1_postmeta` VALUES("903", "205903", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("904", "205903", "_wp_trash_meta_time", "1519798741");
INSERT INTO `wpj1_postmeta` VALUES("905", "205905", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("906", "205905", "_wp_trash_meta_time", "1519798864");
INSERT INTO `wpj1_postmeta` VALUES("907", "205907", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("908", "205907", "_wp_trash_meta_time", "1519798897");
INSERT INTO `wpj1_postmeta` VALUES("909", "205910", "_edit_lock", "1519799287:1");
INSERT INTO `wpj1_postmeta` VALUES("910", "205910", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("911", "205910", "_wp_trash_meta_time", "1519799298");
INSERT INTO `wpj1_postmeta` VALUES("912", "205912", "_edit_lock", "1519799759:1");
INSERT INTO `wpj1_postmeta` VALUES("913", "205912", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("914", "205912", "_wp_trash_meta_time", "1519799791");
INSERT INTO `wpj1_postmeta` VALUES("915", "205914", "_form", "Your Villa Selection\n    [checkbox YourVillaSelection \"Matoa\" \"Kuta\" \"New Kuta\" \"Sanur\" \"Jimbaran\" \"Forest House\"]\n\nYour Apartment Selection\n[checkbox YourApartmentSelection \"Studio Deluxe\" \"Studio Executive\" \"Two Bedroom Deluxe\" \"Two Bedroom Executive\" \"Three Bedroom\"]\n\nTitle\n[radio Title default:1 \"Mr\" \"Miss\" \"Mrs\"]\n\n<label> First Name *\n    [text* first-name] </label>\n\n<label> Last Name *\n    [text* last-name] </label>\n\n<label> Phone Number *\n    [text* phone-number] </label>\n\n<label> Your Email *\n    [email* your-email] </label>\n\n<label> Arrival Date * \n    [date* YourArrivalDate \"Your Arrival Date\"] </label>\n\n<label> Departure Date *\n    [date* YourDepartureDate \"Your Departure Date\"] </label>\n\n<label> Please use the space below for questions or comments.\n    [textarea Comment \"Please add more detail here...\"] </label>\n\n[submit \"Send\"]");
INSERT INTO `wpj1_postmeta` VALUES("916", "205914", "_mail", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:24:\"Panbil Residence Enquiry\";s:6:\"sender\";s:60:\"[Title] [first-name] [last-name] <admin@panbilresidence.com>\";s:9:\"recipient\";s:27:\"enquiry@panbilresidence.com\";s:4:\"body\";s:354:\"From: [Title] [first-name] [last-name] <[your-email]>\nVilla Selection: [YourVillaSelection]\nApartment Selection: [YourApartmentSelection]\nPhone Number: [phone-number]\nArrival Date: [YourArrivalDate]\nDeparture Date: [YourDepartureDate]\n\nMessage Body:\n[Comment]\n\n-- \nThis e-mail was sent from a enquiry form on Panbil Residence (http://panbilresidence.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpj1_postmeta` VALUES("917", "205914", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Panbil Residence \"[your-subject]\"\";s:6:\"sender\";s:44:\"Panbil Residence <admin@panbilresidence.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:123:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Panbil Residence (http://panbilresidence.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: admin@panbilresidence.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wpj1_postmeta` VALUES("918", "205914", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}");
INSERT INTO `wpj1_postmeta` VALUES("919", "205914", "_additional_settings", "");
INSERT INTO `wpj1_postmeta` VALUES("920", "205914", "_locale", "en_US");
INSERT INTO `wpj1_postmeta` VALUES("923", "205916", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("924", "205916", "_wp_trash_meta_time", "1519801090");
INSERT INTO `wpj1_postmeta` VALUES("925", "205918", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("926", "205918", "_wp_trash_meta_time", "1519801326");
INSERT INTO `wpj1_postmeta` VALUES("929", "205935", "_wp_attached_file", "2018/03/Type-Kuta-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("930", "205935", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510324528\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("931", "205936", "_wp_attached_file", "2018/03/Type-Kuta-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("932", "205936", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510324614\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("933", "205937", "_wp_attached_file", "2018/03/Type-Kuta-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("934", "205937", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510324810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("935", "205938", "_wp_attached_file", "2018/03/Type-Kuta-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("936", "205938", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510324829\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("937", "205939", "_wp_attached_file", "2018/03/Type-Kuta-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("938", "205939", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510325222\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("939", "205940", "_wp_attached_file", "2018/03/Type-Kuta-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("940", "205940", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510325620\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("941", "205941", "_wp_attached_file", "2018/03/Type-Kuta-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("942", "205941", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510325842\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("943", "205942", "_wp_attached_file", "2018/03/Type-Kuta-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("944", "205942", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:23:\"2018/03/Type-Kuta-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"Type-Kuta-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510325951\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("945", "205943", "_wp_attached_file", "2018/03/Type-Kuta-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("946", "205943", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:24:\"2018/03/Type-Kuta-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-10-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-10-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-10-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"Type-Kuta-10-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Kuta-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510326033\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("947", "205944", "_wp_attached_file", "2018/03/Type-Kuta-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("948", "205944", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Kuta-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Kuta-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510326071\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("949", "205945", "_wp_attached_file", "2018/03/Type-Kuta-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("950", "205945", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Kuta-12.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Kuta-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510326272\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("951", "205946", "_wp_attached_file", "2018/03/Type-Kuta-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("952", "205946", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:24:\"2018/03/Type-Kuta-13.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-13-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-13-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-13-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Kuta-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"Type-Kuta-13-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Kuta-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Kuta-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510394688\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("953", "205947", "_wp_attached_file", "2018/03/matoa-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("954", "205947", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511345022\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"5000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("955", "205948", "_wp_attached_file", "2018/03/matoa-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("956", "205948", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511345287\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("957", "205949", "_wp_attached_file", "2018/03/matoa-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("958", "205949", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511345715\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("959", "205950", "_wp_attached_file", "2018/03/matoa-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("960", "205950", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511345887\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("961", "205951", "_wp_attached_file", "2018/03/matoa-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("962", "205951", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511346467\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("963", "205952", "_wp_attached_file", "2018/03/matoa-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("964", "205952", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511347335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("965", "205953", "_wp_attached_file", "2018/03/matoa-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("966", "205953", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511347530\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("967", "205954", "_wp_attached_file", "2018/03/matoa-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("968", "205954", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511348836\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("969", "205955", "_wp_attached_file", "2018/03/matoa-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("970", "205955", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2018/03/matoa-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"matoa-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"matoa-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"matoa-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"matoa-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"matoa-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"matoa-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"matoa-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"matoa-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"matoa-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"matoa-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"matoa-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511348938\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("971", "205956", "_wp_attached_file", "2018/03/matoa-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("972", "205956", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2018/03/matoa-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"matoa-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"matoa-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"matoa-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"matoa-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"matoa-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"matoa-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"matoa-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"matoa-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"matoa-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"matoa-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"matoa-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511348961\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("973", "205957", "_wp_attached_file", "2018/03/matoa-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("974", "205957", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2018/03/matoa-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"matoa-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"matoa-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"matoa-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"matoa-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"matoa-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"matoa-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"matoa-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"matoa-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"matoa-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"matoa-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"matoa-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511348995\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("975", "205958", "_wp_attached_file", "2018/03/matoa-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("976", "205958", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:20:\"2018/03/matoa-12.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"matoa-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"matoa-12-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"matoa-12-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"matoa-12-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"matoa-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"matoa-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"matoa-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"matoa-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"matoa-12-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"matoa-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"matoa-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511349146\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("977", "205959", "_wp_attached_file", "2018/03/matoa-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("978", "205959", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2018/03/matoa-13.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"matoa-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"matoa-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"matoa-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"matoa-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"matoa-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"matoa-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"matoa-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"matoa-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"matoa-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"matoa-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"matoa-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511349253\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("979", "205960", "_wp_attached_file", "2018/03/matoa-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("980", "205960", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2018/03/matoa-14.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"matoa-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"matoa-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"matoa-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"matoa-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"matoa-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"matoa-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"matoa-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"matoa-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"matoa-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"matoa-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"matoa-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511349408\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1038", "205989", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-New-Kuta-14.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507982212\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1037", "205989", "_wp_attached_file", "2018/03/Type-New-Kuta-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1035", "205988", "_wp_attached_file", "2018/03/Type-New-Kuta-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1036", "205988", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:28:\"2018/03/Type-New-Kuta-13.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-13-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-13-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-13-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-13-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507982122\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1033", "205987", "_wp_attached_file", "2018/03/Type-New-Kuta-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1034", "205987", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-New-Kuta-12.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507982024\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1031", "205986", "_wp_attached_file", "2018/03/Type-New-Kuta-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1032", "205986", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-New-Kuta-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507981969\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1029", "205985", "_wp_attached_file", "2018/03/Type-New-Kuta-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1030", "205985", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-New-Kuta-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507981739\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1027", "205984", "_wp_attached_file", "2018/03/Type-New-Kuta-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1028", "205984", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507981625\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1025", "205983", "_wp_attached_file", "2018/03/Type-New-Kuta-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1026", "205983", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507981408\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1023", "205982", "_wp_attached_file", "2018/03/Type-New-Kuta-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1024", "205982", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507981382\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1021", "205981", "_wp_attached_file", "2018/03/Type-New-Kuta-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1022", "205981", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1019", "205980", "_wp_attached_file", "2018/03/Type-New-Kuta-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1020", "205980", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979481\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1017", "205979", "_wp_attached_file", "2018/03/Type-New-Kuta-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1018", "205979", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979362\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1015", "205978", "_wp_attached_file", "2018/03/Type-New-Kuta-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1016", "205978", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979329\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1013", "205977", "_wp_attached_file", "2018/03/Type-New-Kuta-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1014", "205977", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979279\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1011", "205976", "_wp_attached_file", "2018/03/Type-New-Kuta-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1012", "205976", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-New-Kuta-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-New-Kuta-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507979184\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1039", "205990", "_wp_attached_file", "2018/03/Type-New-Kuta-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1040", "205990", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-New-Kuta-15.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-New-Kuta-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-New-Kuta-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-New-Kuta-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507982271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1041", "205991", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1042", "205991", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507985173\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1043", "205992", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1044", "205992", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507985351\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1045", "205993", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1046", "205993", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507985473\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1047", "205994", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1048", "205994", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507985519\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1049", "205995", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1050", "205995", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507987887\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1051", "205996", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1052", "205996", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507987899\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1053", "205997", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1054", "205997", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507987947\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1055", "205998", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1056", "205998", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988047\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1057", "205999", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1058", "205999", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-New-Kuta-Lain-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-New-Kuta-Lain-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988105\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1059", "206000", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1060", "206000", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988137\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1061", "206001", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1062", "206001", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988274\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1063", "206002", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1064", "206002", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-12.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988370\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1065", "206003", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1066", "206003", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-13.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988506\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1067", "206004", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1068", "206004", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-14.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988575\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1069", "206005", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1070", "206005", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-15.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988615\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1071", "206006", "_wp_attached_file", "2018/03/Type-New-Kuta-Lain-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1072", "206006", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-New-Kuta-Lain-16.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-New-Kuta-Lain-16-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-New-Kuta-Lain-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-New-Kuta-Lain-16-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507988660\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1073", "206007", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1074", "206007", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507894247\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1075", "206008", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1076", "206008", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507894401\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1077", "206009", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1078", "206009", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507894636\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1079", "206010", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1080", "206010", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507895116\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1081", "206011", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1082", "206011", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507895138\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1083", "206012", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1084", "206012", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507895889\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1085", "206013", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1086", "206013", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507896116\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1087", "206014", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1088", "206014", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507896301\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1089", "206015", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1090", "206015", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Jimbaran-Ubud-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Jimbaran-Ubud-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507896332\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1091", "206016", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1092", "206016", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507896482\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1093", "206017", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1094", "206017", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507896508\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1095", "206018", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1096", "206018", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-12.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507897272\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1097", "206019", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1098", "206019", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-13.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507897457\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1099", "206020", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1100", "206020", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-14.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507897643\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1101", "206021", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1102", "206021", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-15.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507897943\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1103", "206022", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1104", "206022", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-16.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-16-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-16-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507898160\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1105", "206023", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-17.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1106", "206023", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-17.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-17-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-17-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507898262\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1107", "206024", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-18.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1108", "206024", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-18.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-18-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-18-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-18-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507898308\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1109", "206025", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-19.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1110", "206025", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-19.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-19-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-19-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-19-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507898400\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1111", "206026", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-20.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1112", "206026", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-20.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-20-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-20-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-20-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-20-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-20-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507899048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1113", "206027", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-21.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1114", "206027", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-21.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-21-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-21-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-21-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-21-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-21-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507899314\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1115", "206028", "_wp_attached_file", "2018/03/Type-Jimbaran-Ubud-22.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1116", "206028", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Jimbaran-Ubud-22.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-22-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-22-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Jimbaran-Ubud-22-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Jimbaran-Ubud-22-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Jimbaran-Ubud-22-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507899704\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1117", "206029", "_wp_attached_file", "2018/03/Type-Jimbaran-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1118", "206029", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511350446\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1119", "206030", "_wp_attached_file", "2018/03/Type-Jimbaran-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1120", "206030", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511350547\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1121", "206031", "_wp_attached_file", "2018/03/Type-Jimbaran-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1122", "206031", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511350680\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1123", "206032", "_wp_attached_file", "2018/03/Type-Jimbaran-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1124", "206032", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511351034\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1125", "206033", "_wp_attached_file", "2018/03/Type-Jimbaran-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1126", "206033", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511351502\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1127", "206034", "_wp_attached_file", "2018/03/Type-Jimbaran-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1128", "206034", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511351799\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1129", "206035", "_wp_attached_file", "2018/03/Type-Jimbaran-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1130", "206035", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353159\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1131", "206036", "_wp_attached_file", "2018/03/Type-Jimbaran-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1132", "206036", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511353183\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1133", "206037", "_wp_attached_file", "2018/03/Type-Jimbaran-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1134", "206037", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:27:\"2018/03/Type-Jimbaran-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Type-Jimbaran-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511354193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1135", "206038", "_wp_attached_file", "2018/03/Type-Jimbaran-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1136", "206038", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-Jimbaran-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-Jimbaran-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511354914\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1137", "206039", "_wp_attached_file", "2018/03/Type-Jimbaran-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1138", "206039", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-Jimbaran-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-Jimbaran-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511355005\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1139", "206040", "_wp_attached_file", "2018/03/Type-Jimbaran-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1140", "206040", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:28:\"2018/03/Type-Jimbaran-12.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"Type-Jimbaran-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Type-Jimbaran-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Type-Jimbaran-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511355482\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1141", "206041", "_wp_attached_file", "2018/03/Type-Sanur-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1142", "206041", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507905351\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1143", "206042", "_wp_attached_file", "2018/03/Type-Sanur-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1144", "206042", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507905419\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1145", "206043", "_wp_attached_file", "2018/03/Type-Sanur-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1146", "206043", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507905556\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1147", "206044", "_wp_attached_file", "2018/03/Type-Sanur-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1148", "206044", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507905585\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1149", "206045", "_wp_attached_file", "2018/03/Type-Sanur-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1150", "206045", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906105\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1151", "206046", "_wp_attached_file", "2018/03/Type-Sanur-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1152", "206046", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906122\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1153", "206047", "_wp_attached_file", "2018/03/Type-Sanur-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1154", "206047", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906291\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1155", "206048", "_wp_attached_file", "2018/03/Type-Sanur-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1156", "206048", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906496\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1157", "206049", "_wp_attached_file", "2018/03/Type-Sanur-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1158", "206049", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:24:\"2018/03/Type-Sanur-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Type-Sanur-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906624\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1159", "206050", "_wp_attached_file", "2018/03/Type-Sanur-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1160", "206050", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:25:\"2018/03/Type-Sanur-10.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"Type-Sanur-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"Type-Sanur-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:27:\"Type-Sanur-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507906647\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1428", "206087", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1429", "206087", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("1430", "206087", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1431", "206087", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1162", "206060", "_wc_rating_count", "a:0:{}");
INSERT INTO `wpj1_postmeta` VALUES("1163", "206060", "_wc_average_rating", "0");
INSERT INTO `wpj1_postmeta` VALUES("1164", "206060", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1165", "206060", "_edit_lock", "1520039582:1");
INSERT INTO `wpj1_postmeta` VALUES("1166", "206060", "_sku", "");
INSERT INTO `wpj1_postmeta` VALUES("1167", "206060", "_regular_price", "900000");
INSERT INTO `wpj1_postmeta` VALUES("1168", "206060", "_sale_price", "");
INSERT INTO `wpj1_postmeta` VALUES("1169", "206060", "_sale_price_dates_from", "");
INSERT INTO `wpj1_postmeta` VALUES("1170", "206060", "_sale_price_dates_to", "");
INSERT INTO `wpj1_postmeta` VALUES("1171", "206060", "total_sales", "0");
INSERT INTO `wpj1_postmeta` VALUES("1172", "206060", "_tax_status", "taxable");
INSERT INTO `wpj1_postmeta` VALUES("1173", "206060", "_tax_class", "");
INSERT INTO `wpj1_postmeta` VALUES("1174", "206060", "_manage_stock", "no");
INSERT INTO `wpj1_postmeta` VALUES("1175", "206060", "_backorders", "no");
INSERT INTO `wpj1_postmeta` VALUES("1176", "206060", "_sold_individually", "no");
INSERT INTO `wpj1_postmeta` VALUES("1177", "206060", "_weight", "");
INSERT INTO `wpj1_postmeta` VALUES("1178", "206060", "_length", "");
INSERT INTO `wpj1_postmeta` VALUES("1179", "206060", "_width", "");
INSERT INTO `wpj1_postmeta` VALUES("1180", "206060", "_height", "");
INSERT INTO `wpj1_postmeta` VALUES("1181", "206060", "_upsell_ids", "a:0:{}");
INSERT INTO `wpj1_postmeta` VALUES("1182", "206060", "_crosssell_ids", "a:0:{}");
INSERT INTO `wpj1_postmeta` VALUES("1183", "206060", "_purchase_note", "");
INSERT INTO `wpj1_postmeta` VALUES("1184", "206060", "_default_attributes", "a:0:{}");
INSERT INTO `wpj1_postmeta` VALUES("1185", "206060", "_virtual", "no");
INSERT INTO `wpj1_postmeta` VALUES("1186", "206060", "_downloadable", "no");
INSERT INTO `wpj1_postmeta` VALUES("1187", "206060", "_product_image_gallery", "205948,205952,205955,205956,205960,205959,205947");
INSERT INTO `wpj1_postmeta` VALUES("1188", "206060", "_download_limit", "-1");
INSERT INTO `wpj1_postmeta` VALUES("1189", "206060", "_download_expiry", "-1");
INSERT INTO `wpj1_postmeta` VALUES("1190", "206060", "_stock", NULL);
INSERT INTO `wpj1_postmeta` VALUES("1191", "206060", "_stock_status", "instock");
INSERT INTO `wpj1_postmeta` VALUES("1192", "206060", "_product_attributes", "a:2:{s:11:\"attribute-1\";a:6:{s:4:\"name\";s:11:\"attribute 1\";s:5:\"value\";s:17:\"value attribute 1\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:11:\"attribute-2\";a:6:{s:4:\"name\";s:11:\"attribute 2\";s:5:\"value\";s:17:\"value attribute 2\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}");
INSERT INTO `wpj1_postmeta` VALUES("1193", "206060", "_product_version", "3.3.3");
INSERT INTO `wpj1_postmeta` VALUES("1194", "206060", "_price", "900000");
INSERT INTO `wpj1_postmeta` VALUES("1195", "205957", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1196", "205960", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1197", "205959", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1198", "206060", "_thumbnail_id", "205951");
INSERT INTO `wpj1_postmeta` VALUES("1199", "206060", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1200", "206060", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1201", "206060", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1202", "206060", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1221", "206070", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1220", "206070", "_featured_item", "1");
INSERT INTO `wpj1_postmeta` VALUES("1216", "206063", "_wc_review_count", "0");
INSERT INTO `wpj1_postmeta` VALUES("1206", "206063", "_regular_price", "9.99");
INSERT INTO `wpj1_postmeta` VALUES("1207", "206063", "_sale_price", "");
INSERT INTO `wpj1_postmeta` VALUES("1208", "206063", "_visibility", "visible");
INSERT INTO `wpj1_postmeta` VALUES("1209", "206063", "_stock_status", "instock");
INSERT INTO `wpj1_postmeta` VALUES("1210", "206063", "_downloadable", "no");
INSERT INTO `wpj1_postmeta` VALUES("1211", "206063", "_virtual", "no");
INSERT INTO `wpj1_postmeta` VALUES("1212", "206063", "_price", "9.99");
INSERT INTO `wpj1_postmeta` VALUES("1213", "206063", "_product_image_gallery", "");
INSERT INTO `wpj1_postmeta` VALUES("1214", "206060", "_wp_old_date", "2018-03-02");
INSERT INTO `wpj1_postmeta` VALUES("1215", "206060", "_visibility", "visible");
INSERT INTO `wpj1_postmeta` VALUES("1217", "206063", "_wc_rating_count", "a:0:{}");
INSERT INTO `wpj1_postmeta` VALUES("1218", "206063", "_wc_average_rating", "0");
INSERT INTO `wpj1_postmeta` VALUES("1219", "206063", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1222", "206070", "_edit_lock", "1520042134:1");
INSERT INTO `wpj1_postmeta` VALUES("1223", "206070", "_bedrooms", "3");
INSERT INTO `wpj1_postmeta` VALUES("1224", "206070", "_bathrooms", "2");
INSERT INTO `wpj1_postmeta` VALUES("1225", "206070", "_garages", "");
INSERT INTO `wpj1_postmeta` VALUES("1226", "206070", "_price", "");
INSERT INTO `wpj1_postmeta` VALUES("1227", "206070", "_price_prefix", "");
INSERT INTO `wpj1_postmeta` VALUES("1228", "206070", "_area", "0");
INSERT INTO `wpj1_postmeta` VALUES("1229", "206070", "_area_prefix", "");
INSERT INTO `wpj1_postmeta` VALUES("1230", "206070", "_phone1", "");
INSERT INTO `wpj1_postmeta` VALUES("1231", "206070", "detail_images", "");
INSERT INTO `wpj1_postmeta` VALUES("1232", "206070", "lv_item_lat", "0");
INSERT INTO `wpj1_postmeta` VALUES("1233", "206070", "lv_item_lng", "0");
INSERT INTO `wpj1_postmeta` VALUES("1234", "206070", "lv_item_street_visible", "0");
INSERT INTO `wpj1_postmeta` VALUES("1235", "206070", "lv_item_street_lat", "0");
INSERT INTO `wpj1_postmeta` VALUES("1236", "206070", "lv_item_street_lng", "0");
INSERT INTO `wpj1_postmeta` VALUES("1237", "206070", "lv_item_street_heading", "0");
INSERT INTO `wpj1_postmeta` VALUES("1238", "206070", "lv_item_street_pitch", "0");
INSERT INTO `wpj1_postmeta` VALUES("1239", "206070", "lv_item_street_zoom", "0");
INSERT INTO `wpj1_postmeta` VALUES("1478", "205951", "_edit_lock", "1520223789:1");
INSERT INTO `wpj1_postmeta` VALUES("1240", "206070", "_thumbnail_id", "205951");
INSERT INTO `wpj1_postmeta` VALUES("1241", "206070", "property_address_display", "");
INSERT INTO `wpj1_postmeta` VALUES("1242", "206070", "property_address_sub_number", "");
INSERT INTO `wpj1_postmeta` VALUES("1243", "206070", "property_address_street_number", "");
INSERT INTO `wpj1_postmeta` VALUES("1244", "206070", "property_address_street", "");
INSERT INTO `wpj1_postmeta` VALUES("1245", "206070", "property_address_suburb", "");
INSERT INTO `wpj1_postmeta` VALUES("1246", "206070", "property_address_state", "");
INSERT INTO `wpj1_postmeta` VALUES("1247", "206070", "property_address_postal_code", "");
INSERT INTO `wpj1_postmeta` VALUES("1248", "206070", "property_address_country", "");
INSERT INTO `wpj1_postmeta` VALUES("1249", "206070", "property_address_coordinates", "");
INSERT INTO `wpj1_postmeta` VALUES("1250", "206070", "property_address_hide_map", "");
INSERT INTO `wpj1_postmeta` VALUES("1251", "206070", "property_price", "");
INSERT INTO `wpj1_postmeta` VALUES("1252", "206070", "property_price_view", "");
INSERT INTO `wpj1_postmeta` VALUES("1253", "206070", "property_auction", "");
INSERT INTO `wpj1_postmeta` VALUES("1254", "206070", "property_price_display", "");
INSERT INTO `wpj1_postmeta` VALUES("1255", "206070", "property_under_offer", "");
INSERT INTO `wpj1_postmeta` VALUES("1256", "206070", "property_is_home_land_package", "");
INSERT INTO `wpj1_postmeta` VALUES("1257", "206070", "property_sold_price", "");
INSERT INTO `wpj1_postmeta` VALUES("1258", "206070", "property_sold_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1259", "206070", "property_sold_price_display", "");
INSERT INTO `wpj1_postmeta` VALUES("1260", "206070", "property_owner", "");
INSERT INTO `wpj1_postmeta` VALUES("1261", "206070", "property_heading", "");
INSERT INTO `wpj1_postmeta` VALUES("1262", "206070", "property_office_id", "");
INSERT INTO `wpj1_postmeta` VALUES("1263", "206070", "property_agent", "");
INSERT INTO `wpj1_postmeta` VALUES("1264", "206070", "property_second_agent", "");
INSERT INTO `wpj1_postmeta` VALUES("1265", "206070", "property_agent_hide_author_box", "");
INSERT INTO `wpj1_postmeta` VALUES("1266", "206070", "property_status", "current");
INSERT INTO `wpj1_postmeta` VALUES("1267", "206070", "property_list_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1268", "206070", "property_authority", "exclusive");
INSERT INTO `wpj1_postmeta` VALUES("1269", "206070", "property_category", "Villa");
INSERT INTO `wpj1_postmeta` VALUES("1270", "206070", "property_unique_id", "");
INSERT INTO `wpj1_postmeta` VALUES("1271", "206070", "property_mod_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1272", "206070", "property_images_mod_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1273", "206070", "property_featured", "");
INSERT INTO `wpj1_postmeta` VALUES("1274", "206070", "property_inspection_times", "");
INSERT INTO `wpj1_postmeta` VALUES("1275", "206070", "property_bedrooms", "3");
INSERT INTO `wpj1_postmeta` VALUES("1276", "206070", "property_bathrooms", "2");
INSERT INTO `wpj1_postmeta` VALUES("1277", "206070", "property_rooms", "");
INSERT INTO `wpj1_postmeta` VALUES("1278", "206070", "property_ensuite", "");
INSERT INTO `wpj1_postmeta` VALUES("1279", "206070", "property_toilet", "");
INSERT INTO `wpj1_postmeta` VALUES("1280", "206070", "property_garage", "");
INSERT INTO `wpj1_postmeta` VALUES("1281", "206070", "property_carport", "");
INSERT INTO `wpj1_postmeta` VALUES("1282", "206070", "property_open_spaces", "");
INSERT INTO `wpj1_postmeta` VALUES("1283", "206070", "property_year_built", "");
INSERT INTO `wpj1_postmeta` VALUES("1284", "206070", "property_new_construction", "");
INSERT INTO `wpj1_postmeta` VALUES("1285", "206070", "property_pool", "");
INSERT INTO `wpj1_postmeta` VALUES("1286", "206070", "property_air_conditioning", "");
INSERT INTO `wpj1_postmeta` VALUES("1287", "206070", "property_security_system", "");
INSERT INTO `wpj1_postmeta` VALUES("1288", "206070", "property_land_area", "");
INSERT INTO `wpj1_postmeta` VALUES("1289", "206070", "property_land_area_unit", "square");
INSERT INTO `wpj1_postmeta` VALUES("1290", "206070", "property_building_area", "128");
INSERT INTO `wpj1_postmeta` VALUES("1291", "206070", "property_building_area_unit", "square");
INSERT INTO `wpj1_postmeta` VALUES("1292", "206070", "property_land_fully_fenced", "");
INSERT INTO `wpj1_postmeta` VALUES("1293", "206070", "property_remote_garage", "");
INSERT INTO `wpj1_postmeta` VALUES("1294", "206070", "property_secure_parking", "");
INSERT INTO `wpj1_postmeta` VALUES("1295", "206070", "property_study", "");
INSERT INTO `wpj1_postmeta` VALUES("1296", "206070", "property_dishwasher", "");
INSERT INTO `wpj1_postmeta` VALUES("1297", "206070", "property_built_in_robes", "");
INSERT INTO `wpj1_postmeta` VALUES("1298", "206070", "property_gym", "");
INSERT INTO `wpj1_postmeta` VALUES("1299", "206070", "property_workshop", "");
INSERT INTO `wpj1_postmeta` VALUES("1300", "206070", "property_rumpus_room", "");
INSERT INTO `wpj1_postmeta` VALUES("1301", "206070", "property_floor_boards", "");
INSERT INTO `wpj1_postmeta` VALUES("1302", "206070", "property_broadband", "");
INSERT INTO `wpj1_postmeta` VALUES("1303", "206070", "property_pay_tv", "");
INSERT INTO `wpj1_postmeta` VALUES("1304", "206070", "property_vacuum_system", "");
INSERT INTO `wpj1_postmeta` VALUES("1305", "206070", "property_intercom", "");
INSERT INTO `wpj1_postmeta` VALUES("1306", "206070", "property_spa", "");
INSERT INTO `wpj1_postmeta` VALUES("1307", "206070", "property_tennis_court", "");
INSERT INTO `wpj1_postmeta` VALUES("1308", "206070", "property_balcony", "");
INSERT INTO `wpj1_postmeta` VALUES("1309", "206070", "property_deck", "");
INSERT INTO `wpj1_postmeta` VALUES("1310", "206070", "property_courtyard", "");
INSERT INTO `wpj1_postmeta` VALUES("1311", "206070", "property_outdoor_entertaining", "");
INSERT INTO `wpj1_postmeta` VALUES("1312", "206070", "property_shed", "");
INSERT INTO `wpj1_postmeta` VALUES("1313", "206070", "property_ducted_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1314", "206070", "property_ducted_cooling", "");
INSERT INTO `wpj1_postmeta` VALUES("1315", "206070", "property_split_system_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1316", "206070", "property_hydronic_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1317", "206070", "property_split_system_aircon", "");
INSERT INTO `wpj1_postmeta` VALUES("1318", "206070", "property_gas_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1319", "206070", "property_reverse_cycle_aircon", "");
INSERT INTO `wpj1_postmeta` VALUES("1320", "206070", "property_evaporative_cooling", "");
INSERT INTO `wpj1_postmeta` VALUES("1321", "206070", "property_open_fire_place", "");
INSERT INTO `wpj1_postmeta` VALUES("1322", "206070", "property_video_url", "");
INSERT INTO `wpj1_postmeta` VALUES("1323", "206070", "property_floorplan", "");
INSERT INTO `wpj1_postmeta` VALUES("1324", "206070", "property_floorplan_2", "");
INSERT INTO `wpj1_postmeta` VALUES("1325", "206070", "property_external_link", "");
INSERT INTO `wpj1_postmeta` VALUES("1326", "206070", "property_external_link_2", "");
INSERT INTO `wpj1_postmeta` VALUES("1327", "206071", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1328", "206071", "_edit_lock", "1520056623:1");
INSERT INTO `wpj1_postmeta` VALUES("1329", "206071", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("1330", "206071", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1331", "206071", "_et_pb_page_layout", "et_full_width_page");
INSERT INTO `wpj1_postmeta` VALUES("1332", "206071", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1333", "206071", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1334", "206071", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1335", "206071", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1336", "206071", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1337", "206071", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1338", "206071", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1339", "206073", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1340", "206073", "_edit_lock", "1520060134:1");
INSERT INTO `wpj1_postmeta` VALUES("1341", "206073", "_thumbnail_id", "205951");
INSERT INTO `wpj1_postmeta` VALUES("1342", "206073", "property_address_display", "yes");
INSERT INTO `wpj1_postmeta` VALUES("1343", "206073", "property_address_sub_number", "");
INSERT INTO `wpj1_postmeta` VALUES("1344", "206073", "property_address_street_number", "");
INSERT INTO `wpj1_postmeta` VALUES("1345", "206073", "property_address_street", "Jl. Jendral Ahmad Yani, Muka Kuning");
INSERT INTO `wpj1_postmeta` VALUES("1346", "206073", "property_address_suburb", "Batam");
INSERT INTO `wpj1_postmeta` VALUES("1347", "206073", "property_address_state", "Kepulauan Riau");
INSERT INTO `wpj1_postmeta` VALUES("1348", "206073", "property_address_postal_code", "");
INSERT INTO `wpj1_postmeta` VALUES("1349", "206073", "property_address_country", "");
INSERT INTO `wpj1_postmeta` VALUES("1350", "206073", "property_address_coordinates", "");
INSERT INTO `wpj1_postmeta` VALUES("1351", "206073", "property_address_hide_map", "yes");
INSERT INTO `wpj1_postmeta` VALUES("1352", "206073", "property_rent", "123456");
INSERT INTO `wpj1_postmeta` VALUES("1353", "206073", "property_rent_period", "day");
INSERT INTO `wpj1_postmeta` VALUES("1354", "206073", "property_rent_view", "rent text");
INSERT INTO `wpj1_postmeta` VALUES("1355", "206073", "property_rent_display", "yes");
INSERT INTO `wpj1_postmeta` VALUES("1356", "206073", "property_bond", "");
INSERT INTO `wpj1_postmeta` VALUES("1357", "206073", "property_date_available", "2018-05-03");
INSERT INTO `wpj1_postmeta` VALUES("1358", "206073", "property_furnished", "");
INSERT INTO `wpj1_postmeta` VALUES("1359", "206073", "property_owner", "");
INSERT INTO `wpj1_postmeta` VALUES("1360", "206073", "property_heading", "");
INSERT INTO `wpj1_postmeta` VALUES("1361", "206073", "property_office_id", "");
INSERT INTO `wpj1_postmeta` VALUES("1362", "206073", "property_agent", "");
INSERT INTO `wpj1_postmeta` VALUES("1363", "206073", "property_second_agent", "");
INSERT INTO `wpj1_postmeta` VALUES("1364", "206073", "property_agent_hide_author_box", "");
INSERT INTO `wpj1_postmeta` VALUES("1365", "206073", "property_status", "current");
INSERT INTO `wpj1_postmeta` VALUES("1366", "206073", "property_list_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1367", "206073", "property_category", "Villa");
INSERT INTO `wpj1_postmeta` VALUES("1368", "206073", "property_unique_id", "");
INSERT INTO `wpj1_postmeta` VALUES("1369", "206073", "property_mod_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1370", "206073", "property_images_mod_date", "");
INSERT INTO `wpj1_postmeta` VALUES("1371", "206073", "property_featured", "");
INSERT INTO `wpj1_postmeta` VALUES("1372", "206073", "property_inspection_times", "");
INSERT INTO `wpj1_postmeta` VALUES("1373", "206073", "property_bedrooms", "3");
INSERT INTO `wpj1_postmeta` VALUES("1374", "206073", "property_bathrooms", "2");
INSERT INTO `wpj1_postmeta` VALUES("1375", "206073", "property_rooms", "");
INSERT INTO `wpj1_postmeta` VALUES("1376", "206073", "property_ensuite", "");
INSERT INTO `wpj1_postmeta` VALUES("1377", "206073", "property_toilet", "");
INSERT INTO `wpj1_postmeta` VALUES("1378", "206073", "property_garage", "");
INSERT INTO `wpj1_postmeta` VALUES("1379", "206073", "property_carport", "");
INSERT INTO `wpj1_postmeta` VALUES("1380", "206073", "property_open_spaces", "");
INSERT INTO `wpj1_postmeta` VALUES("1381", "206073", "property_year_built", "");
INSERT INTO `wpj1_postmeta` VALUES("1382", "206073", "property_new_construction", "");
INSERT INTO `wpj1_postmeta` VALUES("1383", "206073", "property_pool", "");
INSERT INTO `wpj1_postmeta` VALUES("1384", "206073", "property_air_conditioning", "");
INSERT INTO `wpj1_postmeta` VALUES("1385", "206073", "property_security_system", "");
INSERT INTO `wpj1_postmeta` VALUES("1386", "206073", "property_pet_friendly", "");
INSERT INTO `wpj1_postmeta` VALUES("1387", "206073", "property_land_area", "128");
INSERT INTO `wpj1_postmeta` VALUES("1388", "206073", "property_land_area_unit", "squareMeter");
INSERT INTO `wpj1_postmeta` VALUES("1389", "206073", "property_building_area", "");
INSERT INTO `wpj1_postmeta` VALUES("1390", "206073", "property_building_area_unit", "square");
INSERT INTO `wpj1_postmeta` VALUES("1391", "206073", "property_land_fully_fenced", "");
INSERT INTO `wpj1_postmeta` VALUES("1392", "206073", "property_remote_garage", "");
INSERT INTO `wpj1_postmeta` VALUES("1393", "206073", "property_secure_parking", "");
INSERT INTO `wpj1_postmeta` VALUES("1394", "206073", "property_study", "");
INSERT INTO `wpj1_postmeta` VALUES("1395", "206073", "property_dishwasher", "");
INSERT INTO `wpj1_postmeta` VALUES("1396", "206073", "property_built_in_robes", "");
INSERT INTO `wpj1_postmeta` VALUES("1397", "206073", "property_gym", "");
INSERT INTO `wpj1_postmeta` VALUES("1398", "206073", "property_workshop", "");
INSERT INTO `wpj1_postmeta` VALUES("1399", "206073", "property_rumpus_room", "");
INSERT INTO `wpj1_postmeta` VALUES("1400", "206073", "property_floor_boards", "");
INSERT INTO `wpj1_postmeta` VALUES("1401", "206073", "property_broadband", "");
INSERT INTO `wpj1_postmeta` VALUES("1402", "206073", "property_pay_tv", "");
INSERT INTO `wpj1_postmeta` VALUES("1403", "206073", "property_vacuum_system", "");
INSERT INTO `wpj1_postmeta` VALUES("1404", "206073", "property_intercom", "");
INSERT INTO `wpj1_postmeta` VALUES("1405", "206073", "property_spa", "");
INSERT INTO `wpj1_postmeta` VALUES("1406", "206073", "property_tennis_court", "");
INSERT INTO `wpj1_postmeta` VALUES("1407", "206073", "property_balcony", "");
INSERT INTO `wpj1_postmeta` VALUES("1408", "206073", "property_deck", "");
INSERT INTO `wpj1_postmeta` VALUES("1409", "206073", "property_courtyard", "");
INSERT INTO `wpj1_postmeta` VALUES("1410", "206073", "property_outdoor_entertaining", "");
INSERT INTO `wpj1_postmeta` VALUES("1411", "206073", "property_shed", "");
INSERT INTO `wpj1_postmeta` VALUES("1412", "206073", "property_ducted_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1413", "206073", "property_ducted_cooling", "");
INSERT INTO `wpj1_postmeta` VALUES("1414", "206073", "property_split_system_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1415", "206073", "property_hydronic_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1416", "206073", "property_split_system_aircon", "");
INSERT INTO `wpj1_postmeta` VALUES("1417", "206073", "property_gas_heating", "");
INSERT INTO `wpj1_postmeta` VALUES("1418", "206073", "property_reverse_cycle_aircon", "");
INSERT INTO `wpj1_postmeta` VALUES("1419", "206073", "property_evaporative_cooling", "");
INSERT INTO `wpj1_postmeta` VALUES("1420", "206073", "property_open_fire_place", "");
INSERT INTO `wpj1_postmeta` VALUES("1421", "206073", "property_video_url", "");
INSERT INTO `wpj1_postmeta` VALUES("1422", "206073", "property_floorplan", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1423", "206073", "property_floorplan_2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1424", "206073", "property_external_link", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1425", "206073", "property_external_link_2", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1426", "206073", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1432", "206087", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1433", "206087", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("1434", "206087", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1435", "206087", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1436", "206087", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1437", "206087", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1438", "206087", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1439", "206087", "_edit_lock", "1520055329:1");
INSERT INTO `wpj1_postmeta` VALUES("1440", "206087", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1441", "206091", "_edit_lock", "1520053074:1");
INSERT INTO `wpj1_postmeta` VALUES("1442", "206091", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1443", "206091", "_wp_trash_meta_time", "1520053084");
INSERT INTO `wpj1_postmeta` VALUES("1998", "206478", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1483", "206192", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1484", "206192", "_wp_trash_meta_time", "1520220823");
INSERT INTO `wpj1_postmeta` VALUES("2192", "205554", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("1444", "206093", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1445", "206093", "_wp_trash_meta_time", "1520053162");
INSERT INTO `wpj1_postmeta` VALUES("1446", "206095", "_edit_lock", "1520053225:1");
INSERT INTO `wpj1_postmeta` VALUES("1447", "206095", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1448", "206095", "_wp_trash_meta_time", "1520053258");
INSERT INTO `wpj1_postmeta` VALUES("1449", "206087", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1450", "206087", "_wp_trash_meta_time", "1520055473");
INSERT INTO `wpj1_postmeta` VALUES("1451", "206087", "_wp_desired_post_slug", "test-custom-grid-page");
INSERT INTO `wpj1_postmeta` VALUES("1452", "206098", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1453", "206098", "_wp_trash_meta_time", "1520055488");
INSERT INTO `wpj1_postmeta` VALUES("1459", "206109", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1460", "206109", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1461", "206109", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1462", "206109", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("1463", "206109", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1464", "206109", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1465", "206109", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1466", "206109", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1467", "206109", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1468", "206109", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:4:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";s:11:\"et-gf-amiko\";s:21:\"Amiko:regular,600,700\";s:19:\"et-gf-anonymous-pro\";s:42:\"Anonymous+Pro:regular,italic,700,700italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1469", "206109", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1470", "206109", "_wp_trash_meta_time", "1520057950");
INSERT INTO `wpj1_postmeta` VALUES("1471", "206109", "_wp_desired_post_slug", "test-page");
INSERT INTO `wpj1_postmeta` VALUES("2005", "205558", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("1997", "206477", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1490", "206213", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1491", "206213", "_wp_trash_meta_time", "1520241272");
INSERT INTO `wpj1_postmeta` VALUES("1725", "206347", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1726", "206347", "_edit_lock", "1520778383:1");
INSERT INTO `wpj1_postmeta` VALUES("1727", "206347", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("1534", "206247", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510309741\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1535", "206248", "_wp_attached_file", "2018/03/Type-Forest-House-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1536", "206248", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510309784\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1537", "206249", "_wp_attached_file", "2018/03/Type-Forest-House-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1538", "206249", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510309892\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1539", "206250", "_wp_attached_file", "2018/03/Type-Forest-House-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1540", "206250", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-4-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-4-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-4-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310033\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1541", "206251", "_wp_attached_file", "2018/03/Type-Forest-House-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1542", "206251", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1543", "206252", "_wp_attached_file", "2018/03/Type-Forest-House-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1544", "206252", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310302\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1545", "206253", "_wp_attached_file", "2018/03/Type-Forest-House-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1546", "206253", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310500\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1547", "206254", "_wp_attached_file", "2018/03/Type-Forest-House-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1548", "206254", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310568\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1549", "206255", "_wp_attached_file", "2018/03/Type-Forest-House-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1550", "206255", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Type-Forest-House-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Type-Forest-House-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310849\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1551", "206256", "_wp_attached_file", "2018/03/Type-Forest-House-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1552", "206256", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-10.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510310934\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1553", "206257", "_wp_attached_file", "2018/03/Type-Forest-House-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1554", "206257", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-11.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312186\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1555", "206258", "_wp_attached_file", "2018/03/Type-Forest-House-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1556", "206258", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-12.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1557", "206259", "_wp_attached_file", "2018/03/Type-Forest-House-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1558", "206259", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-13.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312474\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1559", "206260", "_wp_attached_file", "2018/03/Type-Forest-House-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1560", "206260", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-14.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1561", "206261", "_wp_attached_file", "2018/03/Type-Forest-House-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1562", "206261", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-15.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312655\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1563", "206262", "_wp_attached_file", "2018/03/Type-Forest-House-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1564", "206262", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-16.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-16-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-16-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312664\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1565", "206263", "_wp_attached_file", "2018/03/Type-Forest-House-17.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1566", "206263", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-17.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-17-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-17-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-17-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-17-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312729\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"6400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1567", "206264", "_wp_attached_file", "2018/03/Type-Forest-House-18.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1568", "206264", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-18.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-18-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-18-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-18-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312904\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1533", "206247", "_wp_attached_file", "2018/03/Type-Forest-House-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1569", "206265", "_wp_attached_file", "2018/03/Type-Forest-House-19.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1570", "206265", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Forest-House-19.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-19-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Forest-House-19-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Forest-House-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Forest-House-19-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510312915\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1571", "206266", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1572", "206266", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397192\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1573", "206267", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1574", "206267", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397262\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1575", "206268", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1576", "206268", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397421\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1577", "206269", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1578", "206269", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397565\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1579", "206270", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1580", "206270", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397609\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1581", "206271", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1582", "206271", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397642\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1583", "206272", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1584", "206272", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397898\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1585", "206273", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1586", "206273", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-8-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-8-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-8-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510397999\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1587", "206274", "_wp_attached_file", "2018/03/Type-Studio-Deluxe-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1588", "206274", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:32:\"2018/03/Type-Studio-Deluxe-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-9-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-9-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Studio-Deluxe-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-9-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Studio-Deluxe-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Studio-Deluxe-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510398074\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1589", "206275", "_wp_attached_file", "2018/03/Studio-Executive-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1590", "206275", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:30:\"2018/03/Studio-Executive-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510394866\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1591", "206276", "_wp_attached_file", "2018/03/Studio-Executive-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1592", "206276", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395213\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1593", "206277", "_wp_attached_file", "2018/03/Studio-Executive-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1594", "206277", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395230\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1595", "206278", "_wp_attached_file", "2018/03/Studio-Executive-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1596", "206278", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395463\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1597", "206279", "_wp_attached_file", "2018/03/Studio-Executive-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1598", "206279", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395503\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1599", "206280", "_wp_attached_file", "2018/03/Studio-Executive-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1600", "206280", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395729\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1601", "206281", "_wp_attached_file", "2018/03/Studio-Executive-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1602", "206281", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395758\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1603", "206282", "_wp_attached_file", "2018/03/Studio-Executive-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1604", "206282", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395796\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1605", "206283", "_wp_attached_file", "2018/03/Studio-Executive-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1606", "206283", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:30:\"2018/03/Studio-Executive-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Studio-Executive-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510395818\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1607", "206284", "_wp_attached_file", "2018/03/Studio-Executive-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1608", "206284", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Studio-Executive-10.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Studio-Executive-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510396078\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1609", "206285", "_wp_attached_file", "2018/03/Studio-Executive-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1610", "206285", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Studio-Executive-11.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Studio-Executive-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510396217\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1611", "206286", "_wp_attached_file", "2018/03/Studio-Executive-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1612", "206286", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:31:\"2018/03/Studio-Executive-12.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Studio-Executive-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Studio-Executive-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510396364\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1613", "206287", "_wp_attached_file", "2018/03/Type-Three-Bedroom-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1614", "206287", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1615", "206288", "_wp_attached_file", "2018/03/Type-Three-Bedroom-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1616", "206288", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400952\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1617", "206289", "_wp_attached_file", "2018/03/Type-Three-Bedroom-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1618", "206289", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1619", "206290", "_wp_attached_file", "2018/03/Type-Three-Bedroom-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1620", "206290", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1621", "206291", "_wp_attached_file", "2018/03/Type-Three-Bedroom-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1622", "206291", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401046\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1623", "206292", "_wp_attached_file", "2018/03/Type-Three-Bedroom-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1624", "206292", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401131\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1625", "206293", "_wp_attached_file", "2018/03/Type-Three-Bedroom-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1626", "206293", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401206\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1627", "206294", "_wp_attached_file", "2018/03/Type-Three-Bedroom-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1628", "206294", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401230\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1629", "206295", "_wp_attached_file", "2018/03/Type-Three-Bedroom-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1630", "206295", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Type-Three-Bedroom-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Type-Three-Bedroom-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401246\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1631", "206296", "_wp_attached_file", "2018/03/Type-Three-Bedroom-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1632", "206296", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-10.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1633", "206297", "_wp_attached_file", "2018/03/Type-Three-Bedroom-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1634", "206297", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-11.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401386\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1635", "206298", "_wp_attached_file", "2018/03/Type-Three-Bedroom-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1636", "206298", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-12.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401437\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1637", "206299", "_wp_attached_file", "2018/03/Type-Three-Bedroom-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1638", "206299", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-13.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401494\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1639", "206300", "_wp_attached_file", "2018/03/Type-Three-Bedroom-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1640", "206300", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-14.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401542\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1641", "206301", "_wp_attached_file", "2018/03/Type-Three-Bedroom-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1642", "206301", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-15.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401572\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1643", "206302", "_wp_attached_file", "2018/03/Type-Three-Bedroom-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1644", "206302", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-16.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-16-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-16-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401617\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1645", "206303", "_wp_attached_file", "2018/03/Type-Three-Bedroom-17.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1646", "206303", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-17.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-17-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-17-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401637\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1647", "206304", "_wp_attached_file", "2018/03/Type-Three-Bedroom-18.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1648", "206304", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-18.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-18-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-18-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-18-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401676\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1649", "206305", "_wp_attached_file", "2018/03/Type-Three-Bedroom-19.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1650", "206305", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:33:\"2018/03/Type-Three-Bedroom-19.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-19-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-19-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-19-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Type-Three-Bedroom-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-19-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510401702\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1651", "206306", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1652", "206306", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1653", "206307", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1654", "206307", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402869\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1655", "206308", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1656", "206308", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402881\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1657", "206309", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1658", "206309", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402892\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1659", "206310", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1660", "206310", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402910\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1661", "206311", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1662", "206311", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402936\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1663", "206312", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1664", "206312", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402979\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1665", "206313", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1666", "206313", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-8-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-8-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-8-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402991\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1667", "206314", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1668", "206314", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Two-Bedroom-Deluxe-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Two-Bedroom-Deluxe-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1669", "206315", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1670", "206315", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-10.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-10-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-10-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-10-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403038\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1671", "206316", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1672", "206316", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-11.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403069\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1673", "206317", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1674", "206317", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-12.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403163\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1675", "206318", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1676", "206318", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-13.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403182\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1677", "206319", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1678", "206319", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-14.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403279\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1679", "206320", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1680", "206320", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-15.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403310\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1681", "206321", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1682", "206321", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Two-Bedroom-Deluxe-16.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-16-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Two-Bedroom-Deluxe-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-16-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510403379\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1683", "206322", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1684", "206322", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399607\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1685", "206323", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1686", "206323", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399624\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1687", "206324", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1688", "206324", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399658\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1689", "206325", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1690", "206325", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399728\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1691", "206326", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1692", "206326", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-5-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-5-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-5-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399770\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1693", "206327", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1694", "206327", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1695", "206328", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1696", "206328", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399820\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1697", "206329", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1698", "206329", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399842\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1699", "206330", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1700", "206330", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Type-Two-Bedroom-Executive-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Type-Two-Bedroom-Executive-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399876\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1701", "206331", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1702", "206331", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-10.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510399933\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1703", "206332", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1704", "206332", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-11.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-11-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-11-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-11-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400040\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1705", "206333", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1706", "206333", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-12.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400057\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1707", "206334", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1708", "206334", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-13.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400135\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1709", "206335", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1710", "206335", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-14.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400205\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1711", "206336", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-15.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1712", "206336", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-15.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-15-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-15-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400251\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1713", "206337", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-16.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1714", "206337", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-16.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-16-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-16-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400292\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1715", "206338", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-17.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1716", "206338", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-17.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-17-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-17-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400351\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1717", "206339", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-18.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1718", "206339", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-18.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-18-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-18-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-18-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400366\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1719", "206340", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-19.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1720", "206340", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-19.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-19-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-19-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-19-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-19-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400399\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1721", "206341", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-20.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1722", "206341", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-20.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-20-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-20-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-20-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-20-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-20-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400443\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1723", "206342", "_wp_attached_file", "2018/03/Type-Two-Bedroom-Executive-21.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1724", "206342", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Type-Two-Bedroom-Executive-21.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-21-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-21-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Type-Two-Bedroom-Executive-21-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Type-Two-Bedroom-Executive-21-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Type-Two-Bedroom-Executive-21-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400596\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1728", "206347", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1729", "206347", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1730", "206347", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1731", "206347", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("1732", "206347", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1733", "206347", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1734", "206347", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1735", "206347", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1736", "206347", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1737", "206347", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1738", "206357", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1739", "206357", "_edit_lock", "1520559046:1");
INSERT INTO `wpj1_postmeta` VALUES("1740", "206357", "_thumbnail_id", "206271");
INSERT INTO `wpj1_postmeta` VALUES("1741", "206357", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1742", "206357", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1743", "206357", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1744", "206357", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1745", "206357", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1746", "206357", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1747", "206357", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1748", "206357", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1749", "206357", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1750", "206357", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1751", "206363", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1752", "206363", "_edit_lock", "1520559083:1");
INSERT INTO `wpj1_postmeta` VALUES("1753", "206363", "_thumbnail_id", "206021");
INSERT INTO `wpj1_postmeta` VALUES("1754", "206363", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1755", "206363", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1756", "206363", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1757", "206363", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1758", "206363", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1759", "206363", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1760", "206363", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1761", "206363", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1762", "206363", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1763", "206363", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1764", "206365", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1765", "206365", "_edit_lock", "1520559304:1");
INSERT INTO `wpj1_postmeta` VALUES("1766", "206365", "_thumbnail_id", "166");
INSERT INTO `wpj1_postmeta` VALUES("1767", "206365", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1768", "206365", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1769", "206365", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1770", "206365", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1771", "206365", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1772", "206365", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1773", "206365", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1774", "206365", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1775", "206365", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1776", "206365", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1777", "206367", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1778", "206367", "_thumbnail_id", "206301");
INSERT INTO `wpj1_postmeta` VALUES("1779", "206367", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1780", "206367", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1781", "206367", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1782", "206367", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1783", "206367", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1784", "206367", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1785", "206367", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1786", "206367", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1787", "206367", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1788", "206367", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1789", "206367", "_edit_lock", "1520560301:1");
INSERT INTO `wpj1_postmeta` VALUES("1790", "206369", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1791", "206369", "_edit_lock", "1520560357:1");
INSERT INTO `wpj1_postmeta` VALUES("1792", "206369", "_thumbnail_id", "3942");
INSERT INTO `wpj1_postmeta` VALUES("1793", "206369", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1794", "206369", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1795", "206369", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1796", "206369", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1797", "206369", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1798", "206369", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1799", "206369", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1800", "206369", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1801", "206369", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1802", "206369", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1803", "206371", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1804", "206371", "_edit_lock", "1520560448:1");
INSERT INTO `wpj1_postmeta` VALUES("1805", "206371", "_thumbnail_id", "205410");
INSERT INTO `wpj1_postmeta` VALUES("1806", "206371", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1807", "206371", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1808", "206371", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1809", "206371", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1810", "206371", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1811", "206371", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1812", "206371", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1813", "206371", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1814", "206371", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1815", "206371", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1816", "206373", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1817", "206373", "_thumbnail_id", "206249");
INSERT INTO `wpj1_postmeta` VALUES("1818", "206373", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1819", "206373", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1820", "206373", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1821", "206373", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1822", "206373", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1823", "206373", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1824", "206373", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1825", "206373", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1826", "206373", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1827", "206373", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1828", "206373", "_edit_lock", "1520560493:1");
INSERT INTO `wpj1_postmeta` VALUES("1829", "206375", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("1830", "206375", "_thumbnail_id", "206272");
INSERT INTO `wpj1_postmeta` VALUES("1831", "206375", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("1832", "206375", "_et_pb_project_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1833", "206375", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("1834", "206375", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("1835", "206375", "_et_pb_use_builder", "");
INSERT INTO `wpj1_postmeta` VALUES("1836", "206375", "_et_builder_version", "BB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("1837", "206375", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("1838", "206375", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("1839", "206375", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("1840", "206375", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("1841", "206375", "_edit_lock", "1520784431:1");
INSERT INTO `wpj1_postmeta` VALUES("1842", "206379", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2028", "55", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2029", "206547", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1843", "206375", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1844", "206382", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1845", "206382", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4296;s:6:\"height\";i:2891;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-768x517.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-1-1024x689.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-1-1080x727.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184176\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1846", "206383", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1847", "206383", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184329\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1848", "206384", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1849", "206384", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184646\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1850", "206385", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1851", "206385", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184708\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1852", "206386", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1853", "206386", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184722\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1854", "206387", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1855", "206387", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184771\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1856", "206388", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1857", "206388", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184802\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1858", "206389", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-9.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1859", "206389", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:40:\"2018/03/Fasilitas-Villa-Club-House-9.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-9-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Fasilitas-Villa-Club-House-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184832\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1860", "206390", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-10.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1861", "206390", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Fasilitas-Villa-Club-House-10.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-10-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185115\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1862", "206391", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-11.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1863", "206391", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Fasilitas-Villa-Club-House-11.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-11-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185135\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1864", "206392", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-12.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1865", "206392", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Fasilitas-Villa-Club-House-12.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-12-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-12-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1866", "206393", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-13.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1867", "206393", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Fasilitas-Villa-Club-House-13.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-13-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185203\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1868", "206394", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-14.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1869", "206394", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:41:\"2018/03/Fasilitas-Villa-Club-House-14.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-14-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Fasilitas-Villa-Club-House-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185242\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1870", "206395", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-1-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1871", "206395", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4296;s:6:\"height\";i:2891;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-1-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-768x517.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-1-1-1024x689.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-1-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-1-1-1080x727.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-1-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184176\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1872", "206396", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-2-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1873", "206396", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-2-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-2-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-2-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-2-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-2-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-2-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184329\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1874", "206397", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-3-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1875", "206397", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-3-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-3-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-3-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-3-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-3-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-3-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184646\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1876", "206398", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-4-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1877", "206398", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-4-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-4-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-4-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-4-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-4-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-4-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184708\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1878", "206399", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-5-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1879", "206399", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-5-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-5-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-5-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-5-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-5-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-5-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184722\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1880", "206400", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-6-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1881", "206400", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-6-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-6-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-6-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-6-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-6-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-6-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184771\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1882", "206401", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-7-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1883", "206401", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-7-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-7-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-7-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-7-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-7-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-7-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184802\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1884", "206402", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-9-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1885", "206402", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:42:\"2018/03/Fasilitas-Villa-Club-House-9-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-9-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-9-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-9-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Fasilitas-Villa-Club-House-9-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-9-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184832\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1886", "206403", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-10-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1887", "206403", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-10-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-10-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-10-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-10-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-10-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-10-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185115\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1888", "206404", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-11-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1889", "206404", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-11-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-11-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-11-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-11-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-11-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-11-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185135\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1890", "206405", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-12-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1891", "206405", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-12-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-12-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-12-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-12-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-12-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-12-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1892", "206406", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-13-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1893", "206406", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-13-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-13-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-13-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-13-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-13-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-13-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185203\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1894", "206407", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-14-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1895", "206407", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-14-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-14-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-14-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-14-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-14-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-14-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185242\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1896", "206408", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-15-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1897", "206408", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5041;s:6:\"height\";i:3361;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-15-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-15-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-15-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-15-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-15-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-15-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185251\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1898", "206409", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-16-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1899", "206409", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5380;s:6:\"height\";i:3587;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-16-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-16-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-16-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-16-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-16-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-16-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185295\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1900", "206410", "_wp_attached_file", "2018/03/Fasilitas-Villa-Club-House-17-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1901", "206410", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5023;s:6:\"height\";i:3349;s:4:\"file\";s:43:\"2018/03/Fasilitas-Villa-Club-House-17-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-17-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-17-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Fasilitas-Villa-Club-House-17-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Fasilitas-Villa-Club-House-17-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Villa-Club-House-17-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185312\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1902", "206411", "_wp_attached_file", "2018/03/Fasilitas-Villa-Gym-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1903", "206411", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Fasilitas-Villa-Gym-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Fasilitas-Villa-Gym-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184902\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1904", "206412", "_wp_attached_file", "2018/03/Fasilitas-Villa-Gym-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1905", "206412", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Fasilitas-Villa-Gym-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Fasilitas-Villa-Gym-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184934\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1906", "206413", "_wp_attached_file", "2018/03/Fasilitas-Villa-Gym-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1907", "206413", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Fasilitas-Villa-Gym-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Fasilitas-Villa-Gym-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184953\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1908", "206414", "_wp_attached_file", "2018/03/Fasilitas-Villa-Gym-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1909", "206414", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Fasilitas-Villa-Gym-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Fasilitas-Villa-Gym-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513184986\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1910", "206415", "_wp_attached_file", "2018/03/Fasilitas-Villa-Gym-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1911", "206415", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:33:\"2018/03/Fasilitas-Villa-Gym-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Fasilitas-Villa-Gym-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Fasilitas-Villa-Gym-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Fasilitas-Villa-Gym-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513185003\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1912", "206416", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Mini-Garden-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1913", "206416", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:45:\"2018/03/Fasilitas-Apartment-Mini-Garden-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Mini-Garden-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513179846\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1914", "206417", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1915", "206417", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:45:\"2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Mini-Garden-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513179944\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1916", "206418", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Mini-Garden-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1917", "206418", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:45:\"2018/03/Fasilitas-Apartment-Mini-Garden-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Mini-Garden-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513183220\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1918", "206419", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Mini-Garden-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1919", "206419", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:45:\"2018/03/Fasilitas-Apartment-Mini-Garden-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Mini-Garden-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513179428\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1920", "206420", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Mini-Garden-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1921", "206420", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:45:\"2018/03/Fasilitas-Apartment-Mini-Garden-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Mini-Garden-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513179463\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1922", "206421", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Mini-Garden-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1923", "206421", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:45:\"2018/03/Fasilitas-Apartment-Mini-Garden-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Mini-Garden-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Fasilitas-Apartment-Mini-Garden-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Mini-Garden-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513179548\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1924", "206422", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1925", "206422", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513181620\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1926", "206423", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1927", "206423", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-2-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513181829\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1928", "206424", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1929", "206424", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182054\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1930", "206425", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1931", "206425", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182124\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1932", "206426", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1933", "206426", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1934", "206427", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1935", "206427", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-6-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-6-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-6-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182428\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1936", "206428", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Kolam-Renang-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1937", "206428", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:46:\"2018/03/Fasilitas-Apartment-Kolam-Renang-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Fasilitas-Apartment-Kolam-Renang-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Fasilitas-Apartment-Kolam-Renang-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Fasilitas-Apartment-Kolam-Renang-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182474\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1938", "206429", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1939", "206429", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182763\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1940", "206430", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-2.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1941", "206430", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-2-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182830\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1942", "206431", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-3.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1943", "206431", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-3.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182861\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1944", "206432", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-4.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1945", "206432", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-4.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-4-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-4-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182875\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1946", "206433", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-5.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1947", "206433", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-5.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-5-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-5-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1948", "206434", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-6.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1949", "206434", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-6.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-6-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-6-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182923\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1950", "206435", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-7.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1951", "206435", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-7.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-7-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-7-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513182938\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1952", "206436", "_wp_attached_file", "2018/03/Fasilitas-Apartment-Gym-8.jpg");
INSERT INTO `wpj1_postmeta` VALUES("1953", "206436", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:37:\"2018/03/Fasilitas-Apartment-Gym-8.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"admin-list-thumb\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"epl-image-medium-crop\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Fasilitas-Apartment-Gym-8-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Fasilitas-Apartment-Gym-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Fasilitas-Apartment-Gym-8-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513183023\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("1957", "206444", "_et_pb_module_type", "et_pb_slider");
INSERT INTO `wpj1_postmeta` VALUES("1958", "206444", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1959", "206445", "_et_pb_module_type", "et_pb_slider");
INSERT INTO `wpj1_postmeta` VALUES("1960", "206445", "_et_pb_excluded_global_options", "[]");
INSERT INTO `wpj1_postmeta` VALUES("1961", "206445", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1963", "206373", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("1964", "206455", "_edit_lock", "1520783700:1");
INSERT INTO `wpj1_postmeta` VALUES("1965", "206455", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1966", "206455", "_wp_trash_meta_time", "1520783716");
INSERT INTO `wpj1_postmeta` VALUES("1969", "206467", "_et_pb_module_type", "et_pb_gallery");
INSERT INTO `wpj1_postmeta` VALUES("1970", "206467", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1973", "206375", "_wp_desired_post_slug", "tv");
INSERT INTO `wpj1_postmeta` VALUES("1974", "206373", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1975", "206373", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1976", "206373", "_wp_desired_post_slug", "bar");
INSERT INTO `wpj1_postmeta` VALUES("1977", "206371", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1978", "206371", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1979", "206371", "_wp_desired_post_slug", "bbq");
INSERT INTO `wpj1_postmeta` VALUES("1980", "206369", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1981", "206369", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1982", "206369", "_wp_desired_post_slug", "local-phone");
INSERT INTO `wpj1_postmeta` VALUES("1983", "206367", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1984", "206367", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1985", "206367", "_wp_desired_post_slug", "loundry");
INSERT INTO `wpj1_postmeta` VALUES("1986", "206365", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1987", "206365", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1988", "206365", "_wp_desired_post_slug", "parkiran");
INSERT INTO `wpj1_postmeta` VALUES("1989", "206363", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1990", "206363", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1991", "206363", "_wp_desired_post_slug", "kolam-renang");
INSERT INTO `wpj1_postmeta` VALUES("1992", "206357", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("1993", "206357", "_wp_trash_meta_time", "1520786615");
INSERT INTO `wpj1_postmeta` VALUES("1994", "206357", "_wp_desired_post_slug", "studio-delux");
INSERT INTO `wpj1_postmeta` VALUES("2171", "43", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2012", "206507", "_et_pb_row_layout", "1_3,1_3,1_3");
INSERT INTO `wpj1_postmeta` VALUES("1996", "206475", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2193", "206818", "_et_pb_row_layout", "4_4");
INSERT INTO `wpj1_postmeta` VALUES("2194", "206818", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("1995", "206469", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2201", "205562", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2002", "206347", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2003", "206347", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2004", "206347", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"206347\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2030", "206557", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2031", "206271", "_edit_lock", "1521524903:1");
INSERT INTO `wpj1_postmeta` VALUES("2008", "205560", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2009", "205560", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2010", "205560", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"205560\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2013", "206507", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2014", "206508", "_et_pb_row_layout", "1_3,1_3,1_3");
INSERT INTO `wpj1_postmeta` VALUES("2015", "206508", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2016", "206509", "_et_pb_row_layout", "1_3,1_3,1_3");
INSERT INTO `wpj1_postmeta` VALUES("2017", "206509", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2020", "206530", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("2021", "206530", "_edit_lock", "1521303295:1");
INSERT INTO `wpj1_postmeta` VALUES("2023", "206530", "number_adults", "2");
INSERT INTO `wpj1_postmeta` VALUES("2024", "206530", "number_children", "0");
INSERT INTO `wpj1_postmeta` VALUES("2025", "206530", "minimum_night", "1");
INSERT INTO `wpj1_postmeta` VALUES("2026", "206530", "base_price", "123123");
INSERT INTO `wpj1_postmeta` VALUES("2027", "206527", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2073", "206671", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2074", "206672", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("2052", "206636", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2167", "206727", "wpgmap_map_type", "ROADMAP");
INSERT INTO `wpj1_postmeta` VALUES("2168", "206727", "wpgmap_map_address", "Villa Panbil, Kabil, Batam City, Riau Islands, Indonesia");
INSERT INTO `wpj1_postmeta` VALUES("2043", "206341", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2044", "206341", "_edit_lock", "1521531279:1");
INSERT INTO `wpj1_postmeta` VALUES("2045", "206303", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2046", "206303", "_edit_lock", "1521531278:1");
INSERT INTO `wpj1_postmeta` VALUES("2078", "206672", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("2079", "206672", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("2038", "206284", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2039", "206284", "_edit_lock", "1521530491:1");
INSERT INTO `wpj1_postmeta` VALUES("2040", "206318", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2041", "206311", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2042", "206311", "_edit_lock", "1521530490:1");
INSERT INTO `wpj1_postmeta` VALUES("2088", "206672", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2076", "206673", "_wp_attached_file", "2018/03/Type-Three-Bedroom-1-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("2077", "206673", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:34:\"2018/03/Type-Three-Bedroom-1-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-1-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-1-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Type-Three-Bedroom-1-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Type-Three-Bedroom-1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:36:\"Type-Three-Bedroom-1-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510400689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("2071", "206662", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2058", "206646", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("2059", "206646", "_edit_lock", "1521621744:1");
INSERT INTO `wpj1_postmeta` VALUES("2172", "206758", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2173", "50", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2174", "50", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2060", "206646", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("2061", "206646", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("2062", "206646", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("2063", "206646", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("2064", "206646", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("2065", "206646", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("2066", "206646", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("2067", "206646", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("2068", "206646", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("2069", "206646", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("2070", "206646", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2075", "206672", "_edit_lock", "1521623275:1");
INSERT INTO `wpj1_postmeta` VALUES("2080", "206672", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("2081", "206672", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("2082", "206672", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("2083", "206672", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("2084", "206672", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("2085", "206672", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("2086", "206672", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("2087", "206672", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("2089", "206672", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2090", "206672", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2091", "206672", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"206672\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2092", "206679", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("2093", "206679", "_edit_lock", "1521624523:1");
INSERT INTO `wpj1_postmeta` VALUES("2094", "206682", "_wp_attached_file", "2018/03/Two-Bedroom-Deluxe-1-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("2095", "206682", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:34:\"2018/03/Two-Bedroom-Deluxe-1-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-1-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-1-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Two-Bedroom-Deluxe-1-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Two-Bedroom-Deluxe-1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:36:\"Two-Bedroom-Deluxe-1-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510402800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("2124", "206691", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2096", "206684", "_wp_attached_file", "2018/03/Studio-Executive-1-1.jpg");
INSERT INTO `wpj1_postmeta` VALUES("2097", "206684", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:32:\"2018/03/Studio-Executive-1-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Studio-Executive-1-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Studio-Executive-1-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Studio-Executive-1-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Studio-Executive-1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:34:\"Studio-Executive-1-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510394866\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wpj1_postmeta` VALUES("2198", "206646", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2199", "206646", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2200", "206646", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"206646\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2098", "206679", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("2099", "206679", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("2100", "206679", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("2101", "206679", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("2102", "206679", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("2103", "206679", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("2104", "206679", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("2105", "206679", "_et_pb_old_content", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-13.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon & Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]");
INSERT INTO `wpj1_postmeta` VALUES("2106", "206679", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("2107", "206679", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("2108", "206679", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2109", "206679", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2110", "206679", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2111", "206679", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"206679\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2112", "206691", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("2113", "206691", "_edit_lock", "1521625049:1");
INSERT INTO `wpj1_postmeta` VALUES("2114", "206691", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("2115", "206691", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("2116", "206691", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("2117", "206691", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("2118", "206691", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("2119", "206691", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("2120", "206691", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("2121", "206691", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("2122", "206691", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("2123", "206691", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("2125", "206691", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2126", "206691", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2127", "206691", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"206691\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2128", "206698", "_edit_last", "1");
INSERT INTO `wpj1_postmeta` VALUES("2129", "206698", "_edit_lock", "1521625528:1");
INSERT INTO `wpj1_postmeta` VALUES("2130", "206698", "_wp_page_template", "default");
INSERT INTO `wpj1_postmeta` VALUES("2131", "206698", "_et_pb_post_hide_nav", "default");
INSERT INTO `wpj1_postmeta` VALUES("2132", "206698", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wpj1_postmeta` VALUES("2133", "206698", "_et_pb_side_nav", "off");
INSERT INTO `wpj1_postmeta` VALUES("2134", "206698", "_et_pb_use_builder", "on");
INSERT INTO `wpj1_postmeta` VALUES("2135", "206698", "_et_builder_version", "VB|Divi|3.0.96");
INSERT INTO `wpj1_postmeta` VALUES("2136", "206698", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wpj1_postmeta` VALUES("2137", "206698", "_et_pb_old_content", "");
INSERT INTO `wpj1_postmeta` VALUES("2138", "206698", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wpj1_postmeta` VALUES("2139", "206698", "_et_pb_custom_css", "");
INSERT INTO `wpj1_postmeta` VALUES("2140", "206698", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-pt-sans\";s:36:\"PT+Sans:regular,italic,700,700italic\";s:19:\"et-gf-didact-gothic\";s:21:\"Didact+Gothic:regular\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wpj1_postmeta` VALUES("2141", "206698", "_et_pb_use_ab_testing", "off");
INSERT INTO `wpj1_postmeta` VALUES("2142", "206698", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2143", "206698", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"206698\" /]");
INSERT INTO `wpj1_postmeta` VALUES("2195", "206820", "_et_pb_row_layout", "4_4");
INSERT INTO `wpj1_postmeta` VALUES("2196", "206820", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2145", "206709", "_et_pb_row_layout", "1_2,1_2");
INSERT INTO `wpj1_postmeta` VALUES("2146", "206709", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2166", "206727", "wpgmap_map_height", "500px");
INSERT INTO `wpj1_postmeta` VALUES("2165", "206727", "wpgmap_map_width", "100%");
INSERT INTO `wpj1_postmeta` VALUES("2163", "206727", "wpgmap_map_zoom", "13");
INSERT INTO `wpj1_postmeta` VALUES("2164", "206727", "wpgmap_disable_zoom_scroll", "0");
INSERT INTO `wpj1_postmeta` VALUES("2159", "206727", "wpgmap_title", "");
INSERT INTO `wpj1_postmeta` VALUES("2160", "206727", "wpgmap_heading_class", "");
INSERT INTO `wpj1_postmeta` VALUES("2161", "206727", "wpgmap_show_heading", "0");
INSERT INTO `wpj1_postmeta` VALUES("2162", "206727", "wpgmap_latlng", "1.0907798,104.02611990000003");
INSERT INTO `wpj1_postmeta` VALUES("2176", "47", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2177", "206767", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2178", "206777", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2179", "206779", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2181", "206793", "_wp_trash_meta_time", "1521994448");
INSERT INTO `wpj1_postmeta` VALUES("2182", "206794", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("2183", "206794", "_wp_trash_meta_time", "1521994470");
INSERT INTO `wpj1_postmeta` VALUES("2184", "206795", "_edit_lock", "1521994532:1");
INSERT INTO `wpj1_postmeta` VALUES("2185", "206795", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("2186", "206795", "_wp_trash_meta_time", "1521994545");
INSERT INTO `wpj1_postmeta` VALUES("2187", "206796", "_wp_trash_meta_status", "publish");
INSERT INTO `wpj1_postmeta` VALUES("2188", "206796", "_wp_trash_meta_time", "1521994560");
INSERT INTO `wpj1_postmeta` VALUES("2189", "206797", "_et_pb_built_for_post_type", "page");
INSERT INTO `wpj1_postmeta` VALUES("2190", "53", "_et_pb_ab_subjects", "");
INSERT INTO `wpj1_postmeta` VALUES("2197", "206823", "_et_pb_built_for_post_type", "page");

/* INSERT TABLE DATA: wpj1_posts */
INSERT INTO `wpj1_posts` VALUES("1", "1", "2018-01-23 03:38:12", "2018-01-23 03:38:12", "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2018-01-23 03:38:12", "2018-01-23 03:38:12", "", "0", "http://panbilresidence.com/?p=1", "0", "post", "", "1");
INSERT INTO `wpj1_posts` VALUES("4", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" background_color=\"#1f0030\"][et_pb_fullwidth_header title=\"Divi Builder\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"36px\" content_font_color=\"rgba(255,255,255,0.85)\" max_width=\"700px\" button_one_text=\"Join Now\" button_one_url=\"Join today\" background_overlay_color=\"rgba(40,40,48,0.8)\" title_font=\"Old Standard TT|on||on|\" title_font_size=\"62px\" title_font_size_phone=\"48px\" title_font_size_last_edited=\"on|phone\" content_font=\"Raleway||||\" content_font_size=\"20px\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#e85929\" button_one_border_width=\"0px\" button_one_border_radius=\"2px\" button_one_letter_spacing=\"3px\" button_one_font=\"Raleway|on||on|\" button_one_use_icon=\"off\" button_one_bg_color_hover=\"rgba(232,89,41,0.85)\" button_one_letter_spacing_hover=\"2px\" custom_css_main_element=\"padding: 6% 0 12% 0;\" custom_css_header_container=\"width: 100%;\" custom_css_button_1=\"margin-top: 40px;\" background_image=\"https://cdn.elegantthemes.com/images/tour/hummus2.jpg\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" button_one_icon_placement=\"right\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_icon_placement=\"right\" button_two_letter_spacing_hover=\"0\"]Divi 3.0 introduces a completely new visual interface that will forever change how you build websites. This front end editor allows you to make changes to your website...on your actual website![/et_pb_fullwidth_header][/et_pb_section][et_pb_section background_color=\"#efefe8\" custom_css_main_element=\"z-index: 999;\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" custom_margin=\"-100px||60px|\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" bg_img_1=\"https://cdn.elegantthemes.com/images/tour/limes.jpg\" bg_img_2=\"https://cdn.elegantthemes.com/images/tour/springrolls.jpg\" bg_img_3=\"https://cdn.elegantthemes.com/images/tour/eggs.jpg\" bg_img_4=\"https://cdn.elegantthemes.com/images/tour/lemons.jpg\" background_position_1=\"bottom_center\" background_position_2=\"bottom_center\" background_position_3=\"bottom_center\" background_position_4=\"bottom_center\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_repeat_3=\"no-repeat\" background_repeat_4=\"no-repeat\" custom_css_main_element=\"overflow: visible !important;||-webkit-box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);||-moz-box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);||box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Click & type\" use_icon=\"on\" font_icon=\"%%119%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Drag & Drop\" use_icon=\"on\" font_icon=\"%%372%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e4e4e4\" background_color_gradient_end=\"rgba(228,228,228,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Fully Customize\" use_icon=\"on\" font_icon=\"%%70%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#efefef\" background_color_gradient_end=\"rgba(239,239,239,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Clone & Delete\" use_icon=\"on\" font_icon=\"%%100%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d7d9d9\" background_color_gradient_end=\"rgba(215,217,217,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" custom_padding=\"0px|||\" background_color=\"#efefe8\"][et_pb_row custom_margin=\"|||\" padding_top_1=\"10%\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_blurb title=\"So simple!\" animation=\"off\" text_orientation=\"right\" header_font=\"Raleway|on||on|\" header_font_size=\"36px\" header_text_color=\"#3a3e59\" custom_css_main_element=\"max-width: none;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sed odio non blandit. Ut varius purus eget erat ornare facilisis. Mauris pharetra lacus nec sapien iaculis, sit amet ullamcorper sapien finibus.[/et_pb_blurb][et_pb_button button_text=\"Learn more\" button_alignment=\"right\" background_layout=\"dark\" disabled_on=\"on|on|\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#e85929\" button_border_width=\"0px\" button_border_radius=\"3px\" button_letter_spacing=\"3px\" button_font=\"Raleway|on||on|\" button_use_icon=\"off\" button_bg_color_hover=\"#e84712\" button_letter_spacing_hover=\"2px\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://cdn.elegantthemes.com/images/tour/jar.jpg\" align=\"center\" max_width=\"510px\" /][/et_pb_column][/et_pb_row][et_pb_row custom_margin=\"|||\" make_equal=\"on\" padding_top_2=\"14%\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://cdn.elegantthemes.com/images/tour/cake.jpg\" animation=\"right\" align=\"center\" max_width=\"510px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb title=\"So sweet!\" animation=\"off\" header_font=\"Raleway|on||on|\" header_font_size=\"36px\" header_text_color=\"#3a3e59\" custom_css_main_element=\"max-width: none;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sed odio non blandit. Ut varius purus eget erat ornare facilisis. Mauris pharetra lacus nec sapien iaculis, sit amet ullamcorper sapien finibus.[/et_pb_blurb][et_pb_button button_text=\"Learn more\" button_alignment=\"left\" background_layout=\"dark\" disabled_on=\"on|on|\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#e85929\" button_border_width=\"0px\" button_border_radius=\"2px\" button_letter_spacing=\"3px\" button_font=\"Raleway|on||on|\" button_use_icon=\"off\" button_bg_color_hover=\"#e84712\" button_letter_spacing_hover=\"2px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#212127\" custom_padding=\"|||\" fullwidth=\"on\"][et_pb_fullwidth_header title=\"Perfectly Diverse\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"36px\" content_font_color=\"rgba(255,255,255,0.72)\" button_one_text=\"Download\" background_overlay_color=\"rgba(255,255,255,0)\" title_font=\"Old Standard TT|on||on|\" title_font_size=\"62px\" title_font_size_tablet=\"62px\" title_font_size_phone=\"48px\" title_font_size_last_edited=\"on|phone\" content_font=\"Raleway||||\" content_font_size=\"20px\" content_text_color=\"#ffffff\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#e85929\" button_one_border_width=\"0px\" button_one_border_radius=\"2px\" button_one_letter_spacing=\"3px\" button_one_font=\"Raleway|on||on|\" button_one_use_icon=\"off\" button_one_bg_color_hover=\"rgba(232,89,41,0.85)\" button_one_letter_spacing_hover=\"2px\" custom_css_main_element=\"padding: 6% 0;\" custom_css_header_container=\"width: 100%;\" custom_css_button_1=\"margin-top: 40px;\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vel mollis eros. Vestibulum in blandit massa. Nunc lorem lacus, lacinia ut lobortis id, tempor a sem. Vivamus rhoncus imperdiet quam quis vestibulum. Sed at dui orci. </p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_image src=\"https://cdn.elegantthemes.com/images/tour/cheese.jpg\" animation=\"off\" /][/et_pb_section]", "Divi Builder Demo", "", "publish", "closed", "closed", "", "divi-builder-demo", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/divi-builder-demo/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("5", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Basic", "", "publish", "closed", "closed", "", "homepage-basic", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/homepage-basic/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("6", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Recent Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h1>What Our Customers are Saying</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Shop", "", "publish", "closed", "closed", "", "homepage-shop", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/homepage-shop/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("7", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Portfolio", "", "publish", "closed", "closed", "", "homepage-portfolio", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/homepage-portfolio/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("8", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"https://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Company", "", "publish", "closed", "closed", "", "homepage-company", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/homepage-company/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("9", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"https://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\n\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Corporate", "", "publish", "closed", "closed", "", "homepage-corporate", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/homepage-corporate/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("10", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"https://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Extended", "", "publish", "closed", "closed", "", "homepage-extended", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/homepage-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("11", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Page Fullwidth", "", "publish", "closed", "closed", "", "page-fullwidth", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/page-fullwidth/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("12", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Right Sidebar", "", "publish", "closed", "closed", "", "page-right-sidebar", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/page-right-sidebar/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("13", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Page Left Sidebar", "", "publish", "closed", "closed", "", "page-left-sidebar", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/page-left-sidebar/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("14", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Dual Sidebars", "", "publish", "closed", "closed", "", "page-dual-sidebars", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/page-dual-sidebars/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("15", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Grid", "", "publish", "closed", "closed", "", "portfolio-grid", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/portfolio-grid/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("16", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send me an inquiry and I will get back to you as soon as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio 1 Column", "", "publish", "closed", "closed", "", "portfolio-1-column", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/portfolio-1-column/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("17", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Carousel", "", "publish", "closed", "closed", "", "portfolio-fullwidth-carousel", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/portfolio-fullwidth-carousel/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("18", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Grid", "", "publish", "closed", "closed", "", "portfolio-fullwidth-grid", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/portfolio-fullwidth-grid/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("19", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended", "", "publish", "closed", "closed", "", "project-extended", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/project-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("20", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Details</h4>\n<strong>Client </strong>Client Name\n<strong>Date </strong>Date of Completion\n<strong>Skills </strong>Branding, Web Design\n<strong>View </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended 2", "", "publish", "closed", "closed", "", "project-extended-2", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/project-extended-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("21", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog Masonry", "", "publish", "closed", "closed", "", "blog-masonry", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/blog-masonry/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("22", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Blog Standard", "", "publish", "closed", "closed", "", "blog-standard", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/blog-standard/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("23", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Basic", "", "publish", "closed", "closed", "", "shop-basic", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/shop-basic/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("24", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Extended", "", "publish", "closed", "closed", "", "shop-extended", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/shop-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("25", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Splash Page", "", "publish", "closed", "closed", "", "splash-page", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/splash-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("26", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Maintenance Mode", "", "publish", "closed", "closed", "", "maintenance-mode", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/maintenance-mode/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("27", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "publish", "closed", "closed", "", "coming-soon", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/coming-soon/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("28", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Landing Page", "", "publish", "closed", "closed", "", "landing-page", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/landing-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("29", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]", "About Me", "", "publish", "closed", "closed", "", "about-me", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/about-me/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("30", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/about-us/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("31", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\n\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\nSan Francisco, California 65432\n\n<strong>Phone:</strong> 123.4567.890\n\n<strong>Business Hours:</strong> 8a-6:30p M-F, 9a-2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "publish", "closed", "closed", "", "contact-us", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/contact-us/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("32", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[et_pb_text]\n<h2>Nick Roach</h2>\n<em>President, CEO, Theme UI/UX Designer</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\n[et_pb_text]\n<h2>Kenny Sing</h2>\n<em>Lead Graphic Designers</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\n[et_pb_text]\n<h2>Mitch Skolnik</h2>\n<em>Community Manager</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]", "Our Team", "", "publish", "closed", "closed", "", "our-team", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/our-team/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("33", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"https://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Creative Agency", "", "publish", "closed", "closed", "", "creative-agency", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/creative-agency/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("34", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n-Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\nDon\'t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Sales Page", "", "publish", "closed", "closed", "", "sales-page", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/sales-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("35", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]", "Case Study", "", "publish", "closed", "closed", "", "case-study", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/case-study/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("36", "1", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"https://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\n<h1>Fully Responsive Layouts</h1>\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Product Features", "", "publish", "closed", "closed", "", "product-features", "", "", "2018-01-23 03:41:55", "2018-01-23 03:41:55", "", "0", "http://panbilresidence.com/et_pb_layout/product-features/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("38", "1", "2018-01-23 03:46:51", "2018-01-23 03:46:51", "", "LOGO redesain", "", "inherit", "open", "closed", "", "logo-redesain", "", "", "2018-01-23 03:46:51", "2018-01-23 03:46:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("39", "1", "2018-01-23 03:47:55", "2018-01-23 03:47:55", "input[type=text],\r\ninput[type=email],\r\ninput[type=date],\r\ntextarea {\r\n    width: 100%;\r\n    padding: 12px;\r\n    border: 1px solid #ccc;\r\n    border-radius: 4px;\r\n}\r\n\r\ninput[type=submit] {\r\n		background-color: #c39d63;\r\n    border: none;\r\n    color: white;\r\n    padding: 15px 32px;\r\n    text-align: center;\r\n    text-decoration: none;\r\n    display: inline-block;\r\n    font-size: 15px;\r\n		float: right;\r\n}\r\n\r\n.ten-columns .et_pb_module {width: 10%; float: left;}\r\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\r\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\r\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\r\n.six-columns .et_pb_module {width: 16.66%; float: left;}\r\n.five-columns .et_pb_module {width: 20%; float: left;}\r\n\r\n@media (max-width: 980px){\r\n.ten-columns .et_pb_module {width: 20%;}\r\n.nine-columns .et_pb_module {width: 33.3%;}\r\n.eight-columns .et_pb_module {width: 25%;}\r\n.seven-columns .et_pb_module {width: 25%;}\r\n.six-columns .et_pb_module {width: 33.3%;}\r\n.five-columns .et_pb_module {width: 33.3%;}\r\n}\r\n \r\n@media all and (max-width: 767px) {\r\n.ten-columns .et_pb_module {width: 100%;}\r\n.nine-columns .et_pb_module {width: 100%;}\r\n.eight-columns .et_pb_module {width: 100%;}\r\n.seven-columns .et_pb_module {width: 100%;}\r\n.six-columns .et_pb_module {width: 100%;}\r\n.five-columns .et_pb_module {width: 100%;}\r\n}\r\n\r\n.et_pb_portfolio_item .et_overlay {\r\nz-index: 6;\r\n}\r\n\r\n.et_pb_fullwidth_portfolio .et_pb_portfolio_image h3 {\r\ndisplay: inline-block;\r\nposition: relative;\r\nz-index: 6;\r\n}\r\n\r\n.et_pb_portfolio_item .et_pb_portfolio_image:hover:after {\r\ncontent:\"\";\r\nposition: absolute;\r\nleft: 0;\r\ntop: 0;\r\nwidth: 100%;\r\nheight: 100%;\r\nz-index: 5;\r\ndisplay: block;\r\n}", "panbilresidence", "", "publish", "closed", "closed", "", "panbilresidence", "", "", "2018-03-21 21:14:09", "2018-03-21 21:14:09", "", "0", "http://panbilresidence.com/2018/01/23/panbilresidence/", "0", "custom_css", "", "0");
INSERT INTO `wpj1_posts` VALUES("40", "1", "2018-01-23 03:47:55", "2018-01-23 03:47:55", "", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-01-23 03:47:55", "2018-01-23 03:47:55", "", "39", "http://panbilresidence.com/2018/01/23/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3936", "1", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "icon-service-1", "", "inherit", "open", "closed", "", "icon-service-1", "", "", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("42", "1", "2018-01-23 03:52:06", "0000-00-00 00:00:00", "", "Home", "", "draft", "closed", "closed", "", "", "", "", "2018-01-23 03:52:06", "2018-01-23 03:52:06", "", "0", "http://panbilresidence.com/?page_id=42", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("43", "1", "2018-01-23 03:52:52", "2018-01-23 03:52:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_color=\"rgba(0,0,0,0.03)\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" alt=\"Villa Type Kuta\" title_text=\"Villa Type Kuta\" url=\"http://panbilresidence.com/kuta/\" admin_label=\"Villa Type Kuta\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" alt=\"Villa Type Matoa\" title_text=\"Villa Type Matoa\" url=\"http://panbilresidence.com/matoa/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\" url=\"http://panbilresidence.com/new-kuta/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\" url=\"http://panbilresidence.com/new-kuta/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" alt=\"Villa Type Forest House\" title_text=\"Villa Type Forest House\" url=\"http://panbilresidence.com/forest-house/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" alt=\"Villa Type Jimbaran\" title_text=\"Villa Type Jimbaran\" url=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" alt=\"Villa Type Sanur\" title_text=\"Villa Type Sanur\" url=\"http://panbilresidence.com/sanur/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" alt=\"http://panbilresidence.com/jimbaran/\" title_text=\"http://panbilresidence.com/jimbaran/\" url=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" global_module=\"206820\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "publish", "closed", "closed", "", "home", "", "", "2018-03-25 22:54:00", "2018-03-25 22:54:00", "", "0", "http://panbilresidence.com/?page_id=43", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("44", "1", "2018-01-23 03:52:52", "2018-01-23 03:52:52", "", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 03:52:52", "2018-01-23 03:52:52", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("45", "1", "2018-01-23 03:56:47", "2018-01-23 03:56:47", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SERVICES", "", "publish", "closed", "closed", "", "services", "", "", "2018-03-04 06:06:55", "2018-03-04 06:06:55", "", "0", "http://panbilresidence.com/?page_id=45", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("46", "1", "2018-01-23 03:56:47", "2018-01-23 03:56:47", "", "Services", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-23 03:56:47", "2018-01-23 03:56:47", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("47", "1", "2018-01-23 03:57:36", "2018-01-23 03:57:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "CONTACT", "", "publish", "closed", "closed", "", "contact", "", "", "2018-03-23 08:47:15", "2018-03-23 08:47:15", "", "0", "http://panbilresidence.com/?page_id=47", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("48", "1", "2018-01-23 03:57:36", "2018-01-23 03:57:36", "", "Contact", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-23 03:57:36", "2018-01-23 03:57:36", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("50", "1", "2018-01-23 03:57:47", "2018-01-23 03:57:47", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\"][et_pb_row background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" _builder_version=\"3.0.96\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Enquiry\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]<h1>Reservations</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]This is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "ENQUIRY", "", "publish", "closed", "closed", "", "enquiry", "", "", "2018-03-23 08:43:03", "2018-03-23 08:43:03", "", "0", "http://panbilresidence.com/?page_id=50", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205433", "1", "2018-01-30 14:31:34", "2018-01-30 14:31:34", "[et_pb_section admin_label=\"section\"]\r\n[et_pb_row admin_label=\"row\"]\r\n[et_pb_column type=\"4_4\"]\r\n[et_pb_text admin_label=\"Text\"]\r\n\r\n[/et_pb_text]\r\n[/et_pb_column]\r\n[/et_pb_row]\r\n[/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-30 14:31:34", "2018-01-30 14:31:34", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("52", "1", "2018-01-23 03:57:47", "2018-01-23 03:57:47", "", "Enquiry", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-01-23 03:57:47", "2018-01-23 03:57:47", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("53", "1", "2018-01-23 03:58:23", "2018-01-23 03:58:23", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"75px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"81px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" global_module=\"206820\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "publish", "closed", "closed", "", "apartment", "", "", "2018-03-26 00:06:13", "2018-03-26 00:06:13", "", "0", "http://panbilresidence.com/?page_id=53", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("54", "1", "2018-01-23 03:58:23", "2018-01-23 03:58:23", "", "Apartment", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-23 03:58:23", "2018-01-23 03:58:23", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("55", "1", "2018-01-23 03:58:36", "2018-01-23 03:58:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]<p>Our Maintenance team is always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Facilities\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Our Club House comes withan infinity pool and a lifeguard on duty. The pool side cafe serves varieties of Western, Indonesian and comfort food that alsooffers deliveryoptions, and bar with live music on weekend evenings. The open-air poolside cafe makes for a relaxing place for lazy afternoon lunch, or even to chill-out over a bottle of wine on the weekend nights. You may also find the gym within the Club House. The Edelweiss Supermarket located within the Villa compound caters to your groceries needs. Other facilities available within the Estate include Laundry, Massage and Spa Salon, and a rooftop bar</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Our villas are fully furnished with separate living, dining, kitchen and bedroom areas. The kitchens are extensively equipped, all rooms are fully-air conditioned, and bathrooms are equipped with water heaterto ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.</p>\n<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\">\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24 Hour Security\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]<p>Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "publish", "closed", "closed", "", "villa", "", "", "2018-03-26 06:30:50", "2018-03-26 06:30:50", "", "0", "http://panbilresidence.com/?page_id=55", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("56", "1", "2018-01-23 03:58:36", "2018-01-23 03:58:36", "", "Villa", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-01-23 03:58:36", "2018-01-23 03:58:36", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("57", "1", "2018-01-23 04:02:19", "2018-01-23 04:02:19", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Where It All Began</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\" saved_tabs=\"all\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "ABOUT US", "", "publish", "closed", "closed", "", "about-us", "", "", "2018-01-30 18:50:25", "2018-01-30 18:50:25", "", "0", "http://panbilresidence.com/?page_id=57", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("59", "1", "2018-01-23 04:03:30", "2018-01-23 04:03:30", " ", "", "", "publish", "closed", "closed", "", "59", "", "", "2018-03-25 14:47:41", "2018-03-25 14:47:41", "", "0", "http://panbilresidence.com/?p=59", "3", "nav_menu_item", "", "0");
INSERT INTO `wpj1_posts` VALUES("60", "1", "2018-01-23 04:03:30", "2018-01-23 04:03:30", "", "CONTACT US", "", "publish", "closed", "closed", "", "60", "", "", "2018-03-25 14:47:41", "2018-03-25 14:47:41", "", "0", "http://panbilresidence.com/?p=60", "5", "nav_menu_item", "", "0");
INSERT INTO `wpj1_posts` VALUES("64", "1", "2018-01-23 04:03:31", "2018-01-23 04:03:31", " ", "", "", "publish", "closed", "closed", "", "64", "", "", "2018-03-25 14:47:41", "2018-03-25 14:47:41", "", "0", "http://panbilresidence.com/?p=64", "2", "nav_menu_item", "", "0");
INSERT INTO `wpj1_posts` VALUES("65", "1", "2018-01-23 04:02:19", "2018-01-23 04:02:19", "", "About Us", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2018-01-23 04:02:19", "2018-01-23 04:02:19", "", "57", "http://panbilresidence.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3935", "1", "2018-01-30 13:54:46", "2018-01-30 13:54:46", "", "header-bg-3", "", "inherit", "open", "closed", "", "header-bg-3", "", "", "2018-01-30 13:54:46", "2018-01-30 13:54:46", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/header-bg-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("67", "1", "2018-01-23 04:02:45", "2018-01-23 04:02:45", "", "PANBIL SERVICE RESIDENCE", "", "publish", "closed", "closed", "", "panbil-service-residence", "", "", "2018-01-23 05:35:27", "2018-01-23 05:35:27", "", "0", "http://panbilresidence.com/?page_id=67", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("68", "1", "2018-01-23 04:02:45", "2018-01-23 04:02:45", "", "Panbil Service Residence", "", "inherit", "closed", "closed", "", "67-revision-v1", "", "", "2018-01-23 04:02:45", "2018-01-23 04:02:45", "", "67", "http://panbilresidence.com/67-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("69", "1", "2018-01-23 04:03:10", "2018-01-23 04:03:10", "", "PANBIL SERVICE APARTMENT", "", "publish", "closed", "closed", "", "panbil-service-apartment", "", "", "2018-01-23 05:35:15", "2018-01-23 05:35:15", "", "0", "http://panbilresidence.com/?page_id=69", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("70", "1", "2018-01-23 04:03:10", "2018-01-23 04:03:10", "", "Panbil Service Apartment", "", "inherit", "closed", "closed", "", "69-revision-v1", "", "", "2018-01-23 04:03:10", "2018-01-23 04:03:10", "", "69", "http://panbilresidence.com/69-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("72", "1", "2018-01-23 04:04:38", "2018-01-23 04:04:38", "", "HOME", "", "publish", "closed", "closed", "", "72", "", "", "2018-03-25 14:47:41", "2018-03-25 14:47:41", "", "0", "http://panbilresidence.com/?p=72", "1", "nav_menu_item", "", "0");
INSERT INTO `wpj1_posts` VALUES("75", "1", "2018-01-23 04:15:11", "2018-01-23 04:15:11", "[et_pb_section admin_label=\"section\"]\n		[et_pb_row admin_label=\"row\"]\n			[et_pb_column type=\"4_4\"]\n				[et_pb_text admin_label=\"Text\"]\n					\n				[/et_pb_text]\n			[/et_pb_column]\n		[/et_pb_row]\n	[/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 04:15:11", "2018-01-23 04:15:11", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206513", "1", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "[hotel_booking_checkout]", "Hotel Checkout", "", "publish", "closed", "closed", "", "hotel-checkout", "", "", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "", "0", "http://panbilresidence.com/hotel-checkout/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205876", "1", "2018-02-27 15:17:56", "2018-02-27 15:17:56", "{\n    \"et_divi[body_font_size]\": {\n        \"value\": \"16\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-27 15:17:30\"\n    },\n    \"et_divi[heading_font]\": {\n        \"value\": \"PT Sans\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-27 15:17:30\"\n    },\n    \"et_divi[body_font]\": {\n        \"value\": \"Didact Gothic\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-27 15:17:30\"\n    }\n}", "", "", "trash", "closed", "closed", "", "17671dd9-1156-4327-ad49-cdc96454d8ed", "", "", "2018-02-27 15:17:56", "2018-02-27 15:17:56", "", "0", "http://panbilresidence.com/?p=205876", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205877", "1", "2018-02-27 15:34:12", "2018-02-27 15:34:12", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-02-27 15:34:12", "2018-02-27 15:34:12", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206249", "1", "2018-03-08 08:57:49", "2018-03-08 08:57:49", "", "Type Forest House (3)", "", "inherit", "open", "closed", "", "type-forest-house-3", "", "", "2018-03-08 08:57:49", "2018-03-08 08:57:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206250", "1", "2018-03-08 08:57:59", "2018-03-08 08:57:59", "", "Type Forest House (4)", "", "inherit", "open", "closed", "", "type-forest-house-4", "", "", "2018-03-08 08:57:59", "2018-03-08 08:57:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206247", "1", "2018-03-08 08:57:31", "2018-03-08 08:57:31", "", "Type Forest House (1)", "", "inherit", "open", "closed", "", "type-forest-house-1", "", "", "2018-03-08 08:57:31", "2018-03-08 08:57:31", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206248", "1", "2018-03-08 08:57:40", "2018-03-08 08:57:40", "", "Type Forest House (2)", "", "inherit", "open", "closed", "", "type-forest-house-2", "", "", "2018-03-08 08:57:40", "2018-03-08 08:57:40", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("90", "1", "2018-01-23 05:27:40", "2018-01-23 05:27:40", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<p><img src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" width=\"865\" height=\"605\" alt=\"\" class=\"wp-image-38 alignnone size-full\" /></p>[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<p><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" width=\"478\" height=\"471\" alt=\"\" class=\"wp-image-82 alignnone size-full\" /></p>\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 05:27:40", "2018-01-23 05:27:40", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("88", "1", "2018-01-23 05:21:59", "2018-01-23 05:21:59", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide image=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_size=\"contain\" body_font=\"||||||||\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]				[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 05:21:59", "2018-01-23 05:21:59", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("79", "1", "2018-01-23 04:49:35", "2018-01-23 04:49:35", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_header button_one_text=\"VIEW MORE\" button_one_url=\"http://panbilresidence.com/villa/\" logo_image_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" _builder_version=\"3.0.96\" text_orientation=\"center\" header_fullscreen=\"on\" custom_button_one=\"on\" button_one_font=\"||||||||\" button_one_border_color=\"#e0af45\" button_one_text_color=\"#000000\" content_font=\"||||||||\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]				[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 04:49:35", "2018-01-23 04:49:35", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3942", "1", "2018-01-30 13:54:49", "2018-01-30 13:54:49", "", "web-design-background-01", "", "inherit", "open", "closed", "", "web-design-background-01", "", "", "2018-01-30 13:54:49", "2018-01-30 13:54:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("81", "1", "2018-01-23 05:04:48", "2018-01-23 05:04:48", "", "LOGO PANBIL RESIDENCE VECTOR", "", "inherit", "open", "closed", "", "logo-panbil-residence-vector", "", "", "2018-01-23 05:04:48", "2018-01-23 05:04:48", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-PANBIL-RESIDENCE-VECTOR.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("82", "1", "2018-01-23 05:04:53", "2018-01-23 05:04:53", "", "PSR", "", "inherit", "open", "closed", "", "psr", "", "", "2018-01-23 05:04:53", "2018-01-23 05:04:53", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("83", "1", "2018-01-23 05:04:57", "2018-01-23 05:04:57", "", "logo panbil residence png", "", "inherit", "open", "closed", "", "logo-panbil-residence-png", "", "", "2018-01-23 05:04:57", "2018-01-23 05:04:57", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("85", "1", "2018-01-23 05:08:26", "2018-01-23 05:08:26", "", "logo panbil residence png", "", "inherit", "open", "closed", "", "logo-panbil-residence-png-2", "", "", "2018-01-23 05:08:26", "2018-01-23 05:08:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("86", "1", "2018-01-23 05:08:40", "2018-01-23 05:08:40", "", "LOGO PANBIL RESIDENCE VECTOR", "", "inherit", "open", "closed", "", "logo-panbil-residence-vector-2", "", "", "2018-01-23 05:08:40", "2018-01-23 05:08:40", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-PANBIL-RESIDENCE-VECTOR-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3938", "1", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "icon-service-3", "", "inherit", "open", "closed", "", "icon-service-3", "", "", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3939", "1", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "logo-grid", "", "inherit", "open", "closed", "", "logo-grid", "", "", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/logo-grid.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3940", "1", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "laptop-right-overflow_2x", "", "inherit", "open", "closed", "", "laptop-right-overflow_2x", "", "", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/laptop-right-overflow_2x.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3941", "1", "2018-01-30 13:54:49", "2018-01-30 13:54:49", "", "phone-portrait-white", "", "inherit", "open", "closed", "", "phone-portrait-white", "", "", "2018-01-30 13:54:49", "2018-01-30 13:54:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/phone-portrait-white.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3937", "1", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "icon-service-2", "", "inherit", "open", "closed", "", "icon-service-2", "", "", "2018-01-30 13:54:47", "2018-01-30 13:54:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("93", "1", "2018-01-23 05:33:54", "2018-01-23 05:33:54", "", "ABOUT US", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2018-01-23 05:33:54", "2018-01-23 05:33:54", "", "57", "http://panbilresidence.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("94", "1", "2018-01-23 05:34:04", "2018-01-23 05:34:04", "", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-23 05:34:04", "2018-01-23 05:34:04", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("95", "1", "2018-01-23 05:34:27", "2018-01-23 05:34:27", "", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-23 05:34:27", "2018-01-23 05:34:27", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("96", "1", "2018-01-23 05:34:34", "2018-01-23 05:34:34", "", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-01-23 05:34:34", "2018-01-23 05:34:34", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("97", "1", "2018-01-23 05:34:41", "2018-01-23 05:34:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<p><img src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" width=\"865\" height=\"605\" alt=\"\" class=\"wp-image-38 alignnone size-full\" /></p>[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<p><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" width=\"478\" height=\"471\" alt=\"\" class=\"wp-image-82 alignnone size-full\" /></p>\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 05:34:41", "2018-01-23 05:34:41", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("98", "1", "2018-01-23 05:35:15", "2018-01-23 05:35:15", "", "PANBIL SERVICE APARTMENT", "", "inherit", "closed", "closed", "", "69-revision-v1", "", "", "2018-01-23 05:35:15", "2018-01-23 05:35:15", "", "69", "http://panbilresidence.com/69-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("99", "1", "2018-01-23 05:35:27", "2018-01-23 05:35:27", "", "PANBIL SERVICE RESIDENCE", "", "inherit", "closed", "closed", "", "67-revision-v1", "", "", "2018-01-23 05:35:27", "2018-01-23 05:35:27", "", "67", "http://panbilresidence.com/67-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("101", "1", "2018-01-23 05:35:48", "2018-01-23 05:35:48", "", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-23 05:35:48", "2018-01-23 05:35:48", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("102", "1", "2018-01-23 05:35:55", "2018-01-23 05:35:55", "", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-01-23 05:35:55", "2018-01-23 05:35:55", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("108", "1", "2018-01-23 07:33:28", "2018-01-23 07:33:28", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]\r\n\r\n<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]\r\n\r\n<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 07:33:28", "2018-01-23 07:33:28", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205904", "1", "2018-02-28 06:19:01", "2018-02-28 06:19:01", "input[type=text] {\n    width: 100%;\n    padding: 12px 20px;\n    margin: 8px 0;\n    box-sizing: border-box;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 06:19:01", "2018-02-28 06:19:01", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205905", "1", "2018-02-28 06:21:04", "2018-02-28 06:21:04", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email]{\\n    width: 100%;\\n    padding: 12px 20px;\\n    margin: 8px 0;\\n    box-sizing: border-box;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 06:21:04\"\n    }\n}", "", "", "trash", "closed", "closed", "", "91150eff-e7b0-48df-a19f-ae13844dc845", "", "", "2018-02-28 06:21:04", "2018-02-28 06:21:04", "", "0", "http://panbilresidence.com/91150eff-e7b0-48df-a19f-ae13844dc845/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205906", "1", "2018-02-28 06:21:04", "2018-02-28 06:21:04", "input[type=text],\ninput[type=email]{\n    width: 100%;\n    padding: 12px 20px;\n    margin: 8px 0;\n    box-sizing: border-box;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 06:21:04", "2018-02-28 06:21:04", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205907", "1", "2018-02-28 06:21:37", "2018-02-28 06:21:37", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ntextarea {\\n    width: 100%;\\n    padding: 12px 20px;\\n    margin: 8px 0;\\n    box-sizing: border-box;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 06:21:37\"\n    }\n}", "", "", "trash", "closed", "closed", "", "b6ece43a-4ffb-46ed-a2c5-a0bdf784bdd5", "", "", "2018-02-28 06:21:37", "2018-02-28 06:21:37", "", "0", "http://panbilresidence.com/b6ece43a-4ffb-46ed-a2c5-a0bdf784bdd5/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205908", "1", "2018-02-28 06:21:37", "2018-02-28 06:21:37", "input[type=text],\ninput[type=email],\ntextarea {\n    width: 100%;\n    padding: 12px 20px;\n    margin: 8px 0;\n    box-sizing: border-box;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 06:21:37", "2018-02-28 06:21:37", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205909", "1", "2018-02-28 06:23:39", "2018-02-28 06:23:39", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"] [contact-form-7 id=\"205901\" title=\"Contact form 1\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-28 06:23:39", "2018-02-28 06:23:39", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("116", "1", "2018-01-23 10:27:34", "2018-01-23 10:27:34", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_pagination=\"off\" show_inner_shadow=\"off\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 10:27:34", "2018-01-23 10:27:34", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("114", "1", "2018-01-23 07:39:41", "2018-01-23 07:39:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_pagination=\"off\" show_inner_shadow=\"off\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 07:39:41", "2018-01-23 07:39:41", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("128", "1", "2018-01-23 11:53:46", "2018-01-23 11:53:46", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" _builder_version=\"3.0.96\" align=\"center\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" /][/et_pb_column][et_pb_column type=\"2_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 11:53:46", "2018-01-23 11:53:46", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("118", "1", "2018-01-23 10:37:50", "2018-01-23 10:37:50", "", "_MG_9399", "", "inherit", "open", "closed", "", "_mg_9399", "", "", "2018-01-23 10:37:50", "2018-01-23 10:37:50", "", "43", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("127", "1", "2018-01-23 11:52:50", "2018-01-23 11:52:50", "", "_MG_9306-2", "", "inherit", "open", "closed", "", "_mg_9306-2", "", "", "2018-01-23 11:52:50", "2018-01-23 11:52:50", "", "43", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("119", "1", "2018-01-23 11:14:47", "2018-01-23 11:14:47", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_pagination=\"off\" show_inner_shadow=\"off\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 11:14:47", "2018-01-23 11:14:47", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("120", "1", "2018-01-23 11:16:27", "2018-01-23 11:16:27", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_pagination=\"off\" show_inner_shadow=\"off\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 11:16:27", "2018-01-23 11:16:27", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("121", "1", "2018-01-23 11:18:55", "2018-01-23 11:18:55", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_pagination=\"off\" show_inner_shadow=\"off\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"on\" show_bottom_space=\"on\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 11:18:55", "2018-01-23 11:18:55", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("124", "1", "2018-01-23 11:30:43", "2018-01-23 11:30:43", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" animation_style=\"zoom\" animation_duration=\"250ms\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" _builder_version=\"3.0.96\" align=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 11:30:43", "2018-01-23 11:30:43", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("148", "1", "2018-01-24 16:11:11", "2018-01-24 16:11:11", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2><strong><span style=\"color: #ffff99;\">PROPERTY HIGHLIGHTS</span></strong></h2>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">Fabulous view</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Large Play Ground</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Quiet Neighbourhood</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">swimming pool</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-24 16:11:11", "2018-01-24 16:11:11", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("137", "1", "2018-01-23 12:28:02", "2018-01-23 12:28:02", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"3px|0px|2px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" _builder_version=\"3.0.96\" animation_style=\"zoom\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" align=\"left\" always_center_on_mobile=\"on\" force_fullwidth=\"on\" show_bottom_space=\"on\" /][/et_pb_column][et_pb_column type=\"2_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 12:28:02", "2018-01-23 12:28:02", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("133", "1", "2018-01-23 12:02:41", "2018-01-23 12:02:41", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r\n[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" make_equal=\"on\" custom_padding=\"3px|0px|2px|0px\" module_alignment=\"left\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" _builder_version=\"3.0.96\" animation_style=\"zoom\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][/et_pb_column][et_pb_column type=\"2_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 12:02:41", "2018-01-23 12:02:41", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("130", "1", "2018-01-23 11:57:02", "2018-01-23 11:57:02", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" />\r[/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" />\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.\r\n\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" make_equal=\"on\" custom_padding=\"3px|0px|2px|0px\" module_alignment=\"left\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 11:57:02", "2018-01-23 11:57:02", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("135", "1", "2018-01-23 12:26:59", "2018-01-23 12:26:59", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"3px|0px|2px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" _builder_version=\"3.0.96\" animation_style=\"zoom\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" align=\"left\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][/et_pb_column][et_pb_column type=\"2_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 12:26:59", "2018-01-23 12:26:59", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("139", "1", "2018-01-23 13:13:21", "2018-01-23 13:13:21", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 13:13:21", "2018-01-23 13:13:21", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("141", "1", "2018-01-23 13:15:55", "2018-01-23 13:15:55", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2><strong><span style=\"color: #ffff99;\">PROPERTY HIGHLIGHTS</span></strong></h2>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">Fabulous view</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Large Play Ground</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Quiet Neighbourhood</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">swimming pool</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-23 13:15:55", "2018-01-23 13:15:55", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("150", "1", "2018-01-24 18:00:47", "2018-01-24 18:00:47", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9399.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2><strong><span style=\"color: #ffff99;\">PROPERTY HIGHLIGHTS</span></strong></h2>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">Fabulous view</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Large Play Ground</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Quiet Neighbourhood</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">swimming pool</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#dddddd\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|49.45px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" make_equal=\"on\" custom_padding=\"24.7167px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#dbdbdb\"]<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"24.7167px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-24 18:00:47", "2018-01-24 18:00:47", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("147", "1", "2018-01-24 16:08:33", "2018-01-24 16:08:33", "", "_MG_9501", "", "inherit", "open", "closed", "", "_mg_9501", "", "", "2018-01-24 16:08:33", "2018-01-24 16:08:33", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("152", "1", "2018-01-25 09:33:38", "2018-01-25 09:33:38", "", "_MG_6716", "", "inherit", "open", "closed", "", "_mg_6716", "", "", "2018-01-25 09:33:38", "2018-01-25 09:33:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("153", "1", "2018-01-25 09:38:27", "2018-01-25 09:38:27", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2><strong><span style=\"color: #ffff99;\">PROPERTY HIGHLIGHTS</span></strong></h2>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">Fabulous view</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Large Play Ground</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Quiet Neighbourhood</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">swimming pool</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#dddddd\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"24.7167px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#dbdbdb\"]<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"24.7167px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-25 09:38:27", "2018-01-25 09:38:27", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("158", "1", "2018-01-26 07:12:36", "2018-01-26 07:12:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p style=\"text-align: left;\">Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that allqueries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#dddddd\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"24.7167px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#dbdbdb\"]<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"24.7167px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|49.45px|0px\"][et_pb_row gutter_width=\"3\" _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 07:12:36", "2018-01-26 07:12:36", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("156", "1", "2018-01-25 11:32:07", "2018-01-25 11:32:07", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2><strong><span style=\"color: #ffff99;\">PROPERTY HIGHLIGHTS</span></strong></h2>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">Fabulous view</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Large Play Ground</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Quiet Neighbourhood</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">swimming pool</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#dddddd\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"24.7167px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#dbdbdb\"]<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"24.7167px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|49.45px|0px\"][et_pb_row gutter_width=\"3\" _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-25 11:32:07", "2018-01-25 11:32:07", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("155", "1", "2018-01-25 11:30:03", "2018-01-25 11:30:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|3px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2><strong><span style=\"color: #ffff99;\">PROPERTY HIGHLIGHTS</span></strong></h2>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">Fabulous view</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Large Play Ground</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\" style=\"text-align: left;\">\n<div class=\"single-property-highlight\">\n<h3>Quiet Neighbourhood</h3>\n<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<h3 style=\"text-align: left;\">swimming pool</h3>\n<p style=\"text-align: left;\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur adipisci velit, sed quia non numquam</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#dddddd\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"24.7167px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#dbdbdb\"]<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"24.7167px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row gutter_width=\"3\" _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-25 11:30:03", "2018-01-25 11:30:03", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("160", "1", "2018-01-26 07:33:38", "2018-01-26 07:33:38", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\nNeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" animation_style=\"zoom\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p style=\"text-align: justify;\">Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that allqueries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p style=\"text-align: justify;\">Nestled amongst the dense greeneries in Muka Kuning, our fully lurnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience. design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#dddddd\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"24.7167px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#dbdbdb\"]<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"24.7167px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|49.45px|0px\"][et_pb_row gutter_width=\"3\" _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 07:33:38", "2018-01-26 07:33:38", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("179", "1", "2018-01-26 09:15:16", "2018-01-26 09:15:16", "", "DD.2 (1 of 1)", "", "inherit", "open", "closed", "", "dd-2-1-of-1", "", "", "2018-01-26 09:15:16", "2018-01-26 09:15:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("180", "1", "2018-01-26 09:15:45", "2018-01-26 09:15:45", "", "DD.2 (1 of 1)", "", "inherit", "open", "closed", "", "dd-2-1-of-1-2", "", "", "2018-01-26 09:15:45", "2018-01-26 09:15:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("181", "1", "2018-01-26 09:16:13", "2018-01-26 09:16:13", "", "DD.2 (1 of 1)", "", "inherit", "open", "closed", "", "dd-2-1-of-1-3", "", "", "2018-01-26 09:16:13", "2018-01-26 09:16:13", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("182", "1", "2018-01-26 09:16:49", "2018-01-26 09:16:49", "", "DD.2 (1 of 1)", "", "inherit", "open", "closed", "", "dd-2-1-of-1-4", "", "", "2018-01-26 09:16:49", "2018-01-26 09:16:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("183", "1", "2018-01-26 09:16:58", "2018-01-26 09:16:58", "", "R27 (1 of 1)", "", "inherit", "open", "closed", "", "r27-1-of-1", "", "", "2018-01-26 09:16:58", "2018-01-26 09:16:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("184", "1", "2018-01-26 09:17:15", "2018-01-26 09:17:15", "", "DD.2 (1 of 1)", "", "inherit", "open", "closed", "", "dd-2-1-of-1-5", "", "", "2018-01-26 09:17:15", "2018-01-26 09:17:15", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("185", "1", "2018-01-26 09:18:34", "2018-01-26 09:18:34", "", "S6.2 (1 of 1)", "", "inherit", "open", "closed", "", "s6-2-1-of-1", "", "", "2018-01-26 09:18:34", "2018-01-26 09:18:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("186", "1", "2018-01-26 09:19:37", "2018-01-26 09:19:37", "", "R6 (1 of 1)", "", "inherit", "open", "closed", "", "r6-1-of-1", "", "", "2018-01-26 09:19:37", "2018-01-26 09:19:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("187", "1", "2018-01-26 09:24:07", "2018-01-26 09:24:07", "", "_MG_6720", "", "inherit", "open", "closed", "", "_mg_6720", "", "", "2018-01-26 09:24:07", "2018-01-26 09:24:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("188", "1", "2018-01-26 09:25:34", "2018-01-26 09:25:34", "", "_MG_6821", "", "inherit", "open", "closed", "", "_mg_6821", "", "", "2018-01-26 09:25:34", "2018-01-26 09:25:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6821.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("189", "1", "2018-01-26 09:27:07", "2018-01-26 09:27:07", "", "_MG_6809", "", "inherit", "open", "closed", "", "_mg_6809", "", "", "2018-01-26 09:27:07", "2018-01-26 09:27:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("190", "1", "2018-01-26 09:28:44", "2018-01-26 09:28:44", "", "_MG_6770", "", "inherit", "open", "closed", "", "_mg_6770", "", "", "2018-01-26 09:28:44", "2018-01-26 09:28:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("191", "1", "2018-01-26 09:29:51", "2018-01-26 09:29:51", "", "_MG_6779", "", "inherit", "open", "closed", "", "_mg_6779", "", "", "2018-01-26 09:29:51", "2018-01-26 09:29:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("192", "1", "2018-01-26 09:30:12", "2018-01-26 09:30:12", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" class=\"wp-image-38 alignnone size-full\" width=\"486\" height=\"340\" /></p>\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES<br /> </strong></h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"27px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 09:30:12", "2018-01-26 09:30:12", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("163", "1", "2018-01-26 07:53:49", "2018-01-26 07:53:49", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"3\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 07:53:49", "2018-01-26 07:53:49", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("166", "1", "2018-01-26 08:15:41", "2018-01-26 08:15:41", "", "J12B.1 (1 of 1)", "", "inherit", "open", "closed", "", "j12b-1-1-of-1", "", "", "2018-01-26 08:15:41", "2018-01-26 08:15:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("167", "1", "2018-01-26 08:16:52", "2018-01-26 08:16:52", "", "O18.2 (1 of 1)", "", "inherit", "open", "closed", "", "o18-2-1-of-1", "", "", "2018-01-26 08:16:52", "2018-01-26 08:16:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("168", "1", "2018-01-26 08:18:15", "2018-01-26 08:18:15", "", "Q05.5 (1 of 1)", "", "inherit", "open", "closed", "", "q05-5-1-of-1", "", "", "2018-01-26 08:18:15", "2018-01-26 08:18:15", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("169", "1", "2018-01-26 08:19:44", "2018-01-26 08:19:44", "", "Q12B.1 (1 of 1)", "", "inherit", "open", "closed", "", "q12b-1-1-of-1", "", "", "2018-01-26 08:19:44", "2018-01-26 08:19:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("170", "1", "2018-01-26 08:19:53", "2018-01-26 08:19:53", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"27px|0px|267px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 08:19:53", "2018-01-26 08:19:53", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("172", "1", "2018-01-26 08:24:10", "2018-01-26 08:24:10", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"186\" height=\"184\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|49.45px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 08:24:10", "2018-01-26 08:24:10", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("174", "1", "2018-01-26 08:29:26", "2018-01-26 08:29:26", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" class=\"wp-image-38 alignnone size-full\" width=\"486\" height=\"340\" /></p>\n<h2 style=\"text-align: center;\"><strong>APARTMENT TYPES<br /></strong></h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 08:29:26", "2018-01-26 08:29:26", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("176", "1", "2018-01-26 08:30:05", "2018-01-26 08:30:05", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"49.45px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"6px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" class=\"wp-image-38 alignnone size-full\" width=\"486\" height=\"340\" /></p>\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES<br /> </strong></h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 08:30:05", "2018-01-26 08:30:05", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("196", "1", "2018-01-26 09:37:28", "2018-01-26 09:37:28", "", "051", "", "inherit", "open", "closed", "", "051", "", "", "2018-01-26 09:37:28", "2018-01-26 09:37:28", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/051.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("197", "1", "2018-01-26 09:37:28", "2018-01-26 09:37:28", "", "042", "", "inherit", "open", "closed", "", "042", "", "", "2018-01-26 09:37:28", "2018-01-26 09:37:28", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/042.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("198", "1", "2018-01-26 09:37:29", "2018-01-26 09:37:29", "", "011", "", "inherit", "open", "closed", "", "011", "", "", "2018-01-26 09:37:29", "2018-01-26 09:37:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/011.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("199", "1", "2018-01-26 09:37:29", "2018-01-26 09:37:29", "", "021", "", "inherit", "open", "closed", "", "021", "", "", "2018-01-26 09:37:29", "2018-01-26 09:37:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/021.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("200", "1", "2018-01-26 09:37:29", "2018-01-26 09:37:29", "", "031", "", "inherit", "open", "closed", "", "031", "", "", "2018-01-26 09:37:29", "2018-01-26 09:37:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/031.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("201", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "04", "", "inherit", "open", "closed", "", "04", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/04.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("202", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "05", "", "inherit", "open", "closed", "", "05", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/05.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("203", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "06", "", "inherit", "open", "closed", "", "06", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/06.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("204", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "07", "", "inherit", "open", "closed", "", "07", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/07.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "08", "", "inherit", "open", "closed", "", "08", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/08.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("206", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "032", "", "inherit", "open", "closed", "", "032", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/032.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("207", "1", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "022", "", "inherit", "open", "closed", "", "022", "", "", "2018-01-26 09:37:30", "2018-01-26 09:37:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/022.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("208", "1", "2018-01-26 09:37:31", "2018-01-26 09:37:31", "", "018", "", "inherit", "open", "closed", "", "018", "", "", "2018-01-26 09:37:31", "2018-01-26 09:37:31", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/018.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("209", "1", "2018-01-26 09:37:32", "2018-01-26 09:37:32", "", "02", "", "inherit", "open", "closed", "", "02", "", "", "2018-01-26 09:37:32", "2018-01-26 09:37:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/02.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("210", "1", "2018-01-26 09:37:32", "2018-01-26 09:37:32", "", "03", "", "inherit", "open", "closed", "", "03", "", "", "2018-01-26 09:37:32", "2018-01-26 09:37:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/03.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3905", "1", "2016-04-22 19:21:58", "2016-04-22 17:21:58", "<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/051.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"132px||122px|\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_margin_last_edited=\"on|desktop\" text_line_height=\"1.5em\"]</p><p>Did you like this?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"460px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\" custom_margin=\"||21px|\"]</p><p>Lorem ipsum dolor sit amet, me consetur adipiscing elit, sed do eiusmod est tempor incididunt ut labore et dolore maqua.</p><p>[/et_pb_text][et_pb_button admin_label=\"Button\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"10\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_color=\"#ffffff\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_main_element=\"width:190px;\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" custom_margin=\"||49px|\"]</p><p><span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">HOME</a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">BLOG </a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">PORTFOLIO</a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">FEATURES</a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">CONTACT</a></span></p><p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#666666\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"30px|||\" max_width=\"560px\" custom_margin=\"||30px|\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"||10px|\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse. Platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #10", "", "publish", "closed", "closed", "", "footer-10", "", "", "2016-04-22 19:21:58", "2016-04-22 17:21:58", "", "0", "http://panbilresidence.com/et_pb_layout/footer-10/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3904", "1", "2016-04-22 19:21:53", "2016-04-22 17:21:53", "<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"10\" address_lat=\"37.77452423234229\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" custom_margin=\"||49px|\"]</p><p><span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">HOME</a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">BLOG </a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">PORTFOLIO</a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">FEATURES</a></span> <span style=\"color: #ffffff; margin-right: 3%;\"><a style=\"color: #ffffff;\" href=\"#\">CONTACT</a></span></p><p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#666666\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]</p><p>[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"30px|||\" max_width=\"560px\" custom_margin=\"||30px|\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"||10px|\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse. Platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #9", "", "publish", "closed", "closed", "", "footer-9", "", "", "2016-04-22 19:21:53", "2016-04-22 17:21:53", "", "0", "http://panbilresidence.com/et_pb_layout/footer-9/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("194", "1", "2018-01-26 09:31:09", "2018-01-26 09:31:09", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#efefef\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to <o:p></o:p></span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. <o:p></o:p></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</p>\n</div>\n</div>\n<p><strong><span style=\"color: #ffff99;\"></span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" class=\"wp-image-82 alignnone size-full\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>\n<p><strong></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" class=\"wp-image-38 alignnone size-full\" width=\"486\" height=\"340\" /></p>\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES<br /> </strong></h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"27px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.96\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 09:31:09", "2018-01-26 09:31:09", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3903", "1", "2016-04-22 19:21:47", "2016-04-22 17:21:47", "<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/042.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"133px||120px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" custom_width_px=\"660px\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Get In Touch</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]</p><p>Sed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.</p><p>[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(249,249,249,0.21)\" input_border_radius=\"3\" title_text_color=\"#ffffff\" form_field_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||24px|\"]</p><p>GOOGLE MAP</p><p>[/et_pb_text][et_pb_map admin_label=\"Map\" zoom_level=\"19\" address_lat=\"37.77471944614808\" address_lng=\"-122.4194490276127\" mouse_wheel=\"on\" use_grayscale_filter=\"off\"] [et_pb_map_pin pin_address=\"San Francisco, California, Stati Uniti\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\"][/et_pb_map_pin] [/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #8", "", "publish", "closed", "closed", "", "footer-8", "", "", "2016-04-22 19:21:47", "2016-04-22 17:21:47", "", "0", "http://panbilresidence.com/et_pb_layout/footer-8/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3902", "1", "2016-04-22 19:21:42", "2016-04-22 17:21:42", "<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Privacy Policy</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>NEED HELP?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Company Terms</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Product Licenses</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"10\" address_lat=\"37.77452423234229\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #7", "", "publish", "closed", "closed", "", "footer-7", "", "", "2016-04-22 19:21:42", "2016-04-22 17:21:42", "", "0", "http://panbilresidence.com/et_pb_layout/footer-7/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3901", "1", "2016-04-22 19:21:38", "2016-04-22 17:21:38", "<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"60px||10px|\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||30px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"2em\"]</p><p><a href=\"#\"><img class=\"alignnone size-full wp-image-2150\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/011.png\" alt=\"01\" width=\"15\" height=\"27\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2151\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/021.png\" alt=\"02\" width=\"34\" height=\"27\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2152\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/031.png\" alt=\"03\" width=\"27\" height=\"27\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2153\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/04.png\" alt=\"04\" width=\"29\" height=\"25\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2154\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/05.png\" alt=\"05\" width=\"33\" height=\"25\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2155\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/06.png\" alt=\"06\" width=\"29\" height=\"30\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2156\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/07.png\" alt=\"07\" width=\"25\" height=\"25\" /></a> <a href=\"#\"><img class=\"alignnone size-medium wp-image-2157\" style=\"margin-right: 8%; margin-bottom: 4%;\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/08.png\" alt=\"08\" width=\"27\" height=\"27\" /></a></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>PHOTOGALLERY</p><p>[/et_pb_text][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"1128,1132,1129,1131,1133,1142\" fullwidth=\"on\" show_title_and_caption=\"off\" show_pagination=\"off\" background_layout=\"dark\" auto=\"off\" hover_overlay_color=\"rgba(255,255,255,0.9)\" caption_all_caps=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" posts_number=\"3\"]</p><p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #6", "", "publish", "closed", "closed", "", "footer-6", "", "", "2016-04-22 19:21:38", "2016-04-22 17:21:38", "", "0", "http://panbilresidence.com/et_pb_layout/footer-6/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3900", "1", "2016-04-22 19:21:31", "2016-04-22 17:21:31", "<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"10\" address_lat=\"37.77452423234229\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Privacy Policy</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>NEED HELP?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Company Terms</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Product Licenses</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>FOLLOW US</p><p>[/et_pb_text][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\"]</p><p>[et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network]</p><p>[/et_pb_social_media_follow][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"10\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]</p><p>[/et_pb_divider][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Send It Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"0\" button_font=\"Source Sans Pro||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"width:100%;||\"]</p><p>[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #5", "", "publish", "closed", "closed", "", "footer-5-2", "", "", "2016-04-22 19:21:31", "2016-04-22 17:21:31", "", "0", "http://panbilresidence.com/et_pb_layout/footer-5-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3899", "1", "2016-04-22 19:21:27", "2016-04-22 17:21:27", "<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/032.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"92px||92px|\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"48\" text_font_size_tablet=\"36\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_margin_last_edited=\"on|desktop\" text_line_height=\"1.5em\"]</p><p>Ready to create experiences?</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][et_pb_button admin_label=\"Button\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"10\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_color=\"#ffffff\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_main_element=\"width:190px;\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>PHOTOGALLERY</p><p>[/et_pb_text][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"1128,1132,1129,1131,1133,1142\" fullwidth=\"on\" show_title_and_caption=\"off\" show_pagination=\"off\" background_layout=\"dark\" auto=\"off\" hover_overlay_color=\"rgba(255,255,255,0.9)\" caption_all_caps=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" posts_number=\"3\"] [/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #4", "", "publish", "closed", "closed", "", "footer-4-2", "", "", "2016-04-22 19:21:27", "2016-04-22 17:21:27", "", "0", "http://panbilresidence.com/et_pb_layout/footer-4-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3898", "1", "2016-04-22 19:21:22", "2016-04-22 17:21:22", "<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/022.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"132px||122px|\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_margin_last_edited=\"on|desktop\" text_line_height=\"1.5em\"]</p><p>Did you like this?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"460px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\" custom_margin=\"||21px|\"]</p><p>Lorem ipsum dolor sit amet, me consetur adipiscing elit, sed do eiusmod est tempor incididunt ut labore et dolore maqua.</p><p>[/et_pb_text][et_pb_button admin_label=\"Button\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"10\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_color=\"#ffffff\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_main_element=\"width:190px;\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>FOLLOW US</p><p>[/et_pb_text][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\"] [et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #3", "", "publish", "closed", "closed", "", "footer-3", "", "", "2016-04-22 19:21:22", "2016-04-22 17:21:22", "", "0", "http://panbilresidence.com/et_pb_layout/footer-3/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3897", "1", "2016-04-22 19:21:15", "2016-04-22 17:21:15", "<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/018.jpg\" custom_padding=\"0px||0px|\" gutter_width=\"4\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"]</p><p> </p><p>[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25px||4px|\"]</p><p>0039 3476 1355</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Customer Service</p><p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"]</p><p> </p><p>[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" custom_margin=\"25px|||\"]</p><p>New York. Address: 350 Fifth<br /> Avenue, 34th floor.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"132px||120px|\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||120px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Get In Touch</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]</p><p>Sed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.</p><p>[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#f9f9f9\" input_border_radius=\"3\" title_text_color=\"#848282\" form_field_text_color=\"#848282\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 800;\"]</p><div style=\"display: inline;\">maker <span style=\"font-weight: normal; vertical-align: middle; color: #888; font-size: 14px;\"><em>Show me your catchy slogan!</em></span></div><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\" custom_css_main_element=\"float:right;\"] [et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #2", "", "publish", "closed", "closed", "", "footer-2-2", "", "", "2016-04-22 19:21:15", "2016-04-22 17:21:15", "", "0", "http://panbilresidence.com/et_pb_layout/footer-2-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3896", "1", "2016-04-22 19:21:09", "2016-04-22 17:21:09", "<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"120px||0px|\" custom_padding_tablet=\"100px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#3b3d40\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Get In Touch</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#827f7f\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]</p><p>Sed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"56px||120px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_width_px=\"660px\" custom_padding_tablet=\"16px||100px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#f9f9f9\" input_border_radius=\"3\" title_text_color=\"#848282\" form_field_text_color=\"#848282\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"]</p><p>[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /]</p><p>[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"14\" address_lat=\"37.77452423234226\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 800;\"]</p><div style=\"display: inline;\">maker <span style=\"font-weight: normal; vertical-align: middle; color: #888; font-size: 14px;\"><em>Show me your catchy slogan!</em></span></div><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\" custom_css_main_element=\"float:right;\"]</p><p>[et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network]</p><p>[/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Footer #1", "", "publish", "closed", "closed", "", "footer-1", "", "", "2016-04-22 19:21:09", "2016-04-22 17:21:09", "", "0", "http://panbilresidence.com/et_pb_layout/footer-1/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3917", "1", "2018-01-26 10:00:59", "2018-01-26 10:00:59", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\n\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\n\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|100px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"4\" specialty=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg\" parallax=\"on\" parallax_method=\"off\" custom_padding=\"0px||9px|0px\" custom_padding_tablet=\"0px||0px|\" transparent_background=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation=\"fade_in\" sticky=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro|700|||||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px||4px|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">(0778) 371777<br /> </span></p>[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation=\"fade_in\" sticky=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px|||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">Jl. Ahmad Yani, Muka Kuning</span></p>\n<p><span style=\"color: #808080;\">Batam - Indonesia</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"132px||120px|\" custom_padding_tablet=\"60px||120px|\" use_custom_gutter=\"on\" gutter_width=\"4\" make_equal=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.96\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\" _builder_version=\"3.0.47\" box_shadow_position=\"outer\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]Get In Touch[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"510px\" module_alignment=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"#f9f9f9\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.47\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" title_text_color=\"#848282\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" form_field_text_color=\"#848282\" border_radii=\"on|3px|3px|3px|3px\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"4\" button_border_color=\"#d94b6a\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Montserrat||||\" button_use_icon=\"default\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" input_border_radius=\"3\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 10:00:59", "2018-01-26 10:00:59", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3916", "1", "2018-01-26 10:00:25", "2018-01-26 10:00:25", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\n\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\n\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|100px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"4\" specialty=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg\" parallax=\"on\" parallax_method=\"off\" custom_padding=\"70px||9px|0px\" custom_padding_tablet=\"0px||0px|\" transparent_background=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation=\"fade_in\" sticky=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro|700|||||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px||4px|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">(0778) 371777<br /> </span></p>[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation=\"fade_in\" sticky=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px|||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">Jl. Ahmad Yani, Muka Kuning</span></p>\n<p><span style=\"color: #808080;\">Batam - Indonesia</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"132px||120px|\" custom_padding_tablet=\"60px||120px|\" use_custom_gutter=\"on\" gutter_width=\"4\" make_equal=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.96\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\" _builder_version=\"3.0.47\" box_shadow_position=\"outer\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]Get In Touch[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"510px\" module_alignment=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"#f9f9f9\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.47\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" title_text_color=\"#848282\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" form_field_text_color=\"#848282\" border_radii=\"on|3px|3px|3px|3px\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"4\" button_border_color=\"#d94b6a\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Montserrat||||\" button_use_icon=\"default\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" input_border_radius=\"3\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 10:00:25", "2018-01-26 10:00:25", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3908", "1", "2018-01-26 09:42:04", "2018-01-26 09:42:04", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#efefef\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\">\r\n\r\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\r\n\r\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\r\n\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"27px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/018.jpg\" custom_padding=\"0px||0px|\" gutter_width=\"4\" custom_padding_tablet=\"0px||0px|\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"center\" show_bottom_space=\"off\"]\r\n[/et_pb_image][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25px||4px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n\r\n0039 3476 1355\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n\r\nCustomer Service\r\n\r\n[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"center\" show_bottom_space=\"off\"]\r\n[/et_pb_image][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" custom_margin=\"25px|||\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n\r\nNew York. Address: 350 Fifth\r\nAvenue, 34th floor.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"132px||120px|\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||120px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\"][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]\r\n\r\nGet In Touch\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.\r\n\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" use_redirect=\"off\" form_background_color=\"#f9f9f9\" input_border_radius=\"3\" title_text_color=\"#848282\" form_field_text_color=\"#848282\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"][et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 09:42:04", "2018-01-26 09:42:04", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3907", "1", "2018-01-26 09:41:03", "2018-01-26 09:41:03", "[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 800;\"]\r\n<div style=\"display: inline;\">maker <span style=\"font-weight: normal; vertical-align: middle; color: #888; font-size: 14px;\"><em>Show me your catchy slogan!</em></span></div>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\" custom_css_main_element=\"float:right;\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]\r\n\r\nfacebook\r\n\r\n[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]\r\n\r\nTwitter\r\n\r\n[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]\r\n\r\nGoogle+\r\n\r\n[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]\r\n\r\nPinterest\r\n\r\n[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#efefef\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2>PANBIL SERVICE RESIDENCE</h2>\r\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\">\r\n\r\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\r\n\r\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\r\n\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"27px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/018.jpg\" custom_padding=\"0px||0px|\" gutter_width=\"4\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"] [/et_pb_image][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25px||4px|\"]\r\n\r\n0039 3476 1355\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCustomer Service\r\n\r\n[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"] [/et_pb_image][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" custom_margin=\"25px|||\"]\r\n\r\nNew York. Address: 350 Fifth\r\nAvenue, 34th floor.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"132px||120px|\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||120px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\"][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]\r\n\r\nGet In Touch\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.\r\n\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" use_redirect=\"off\" form_background_color=\"#f9f9f9\" input_border_radius=\"3\" title_text_color=\"#848282\" form_field_text_color=\"#848282\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"][et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 09:41:03", "2018-01-26 09:41:03", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3914", "1", "2018-01-26 09:59:22", "2018-01-26 09:59:22", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\">\r\n\r\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\r\n\r\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\r\n\r\n</div>\r\n</div>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|100px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"4\" specialty=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg\" parallax=\"on\" parallax_method=\"off\" custom_padding=\"70px||44px|0px\" custom_padding_tablet=\"0px||0px|\" transparent_background=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" animation=\"fade_in\" sticky=\"on\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro|700|||||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px||4px|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">(0778) 371777<br /> </span></p>[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" animation=\"fade_in\" sticky=\"on\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px|||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">Jl. Ahmad Yani, Muka Kuning</span></p>\n<p><span style=\"color: #808080;\">Batam - Indonesia</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"132px||120px|\" custom_padding_tablet=\"60px||120px|\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.47\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\" _builder_version=\"3.0.47\" box_shadow_position=\"outer\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]Get In Touch\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"510px\" module_alignment=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"#f9f9f9\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.47\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" title_text_color=\"#848282\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" form_field_text_color=\"#848282\" border_radii=\"on|3px|3px|3px|3px\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"4\" button_border_color=\"#d94b6a\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Montserrat||||\" button_use_icon=\"default\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" input_border_radius=\"3\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 09:59:22", "2018-01-26 09:59:22", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3910", "1", "2018-01-26 09:50:01", "2018-01-26 09:50:01", "", "_MG_9094", "", "inherit", "open", "closed", "", "_mg_9094", "", "", "2018-01-26 09:50:01", "2018-01-26 09:50:01", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3911", "1", "2018-01-26 09:56:53", "2018-01-26 09:56:53", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\r\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\">\r\n\r\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\r\n\r\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\r\n\r\n</div>\r\n</div>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|100px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"4\" specialty=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg\" parallax_method=\"off\" custom_padding=\"70px||0px|0px\" custom_padding_tablet=\"0px||0px|\" transparent_background=\"off\" parallax=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" animation=\"fade_in\" sticky=\"on\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro|700|||||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px||4px|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">(0778) 371777<br /> </span></p>\n[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" animation=\"fade_in\" sticky=\"on\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px|||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">Jl. Ahmad Yani, Muka Kuning</span></p>\n<p><span style=\"color: #808080;\">Batam - Indonesia</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"132px||120px|\" custom_padding_tablet=\"60px||120px|\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.47\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\" _builder_version=\"3.0.47\" box_shadow_position=\"outer\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]Get In Touch\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"510px\" module_alignment=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br />\n[/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"#f9f9f9\" _builder_version=\"3.0.47\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" title_text_color=\"#848282\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" form_field_text_color=\"#848282\" border_radii=\"on|3px|3px|3px|3px\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"4\" button_border_color=\"#d94b6a\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Montserrat||||\" button_use_icon=\"default\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" input_border_radius=\"3\" module_id=\"et_pb_contact_form_0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 09:56:53", "2018-01-26 09:56:53", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3918", "1", "2018-01-26 10:01:52", "2018-01-26 10:01:52", "<p>[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.96\"]</p><h2>PANBIL SERVICE RESIDENCE</h2><p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]</p><div class=\"col-lg-6 col-md-6 col-sm-6\"><div class=\"single-property-highlight\">Our comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority. Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.</div></div><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]</p><h1 style=\"text-align: center;\"><em>a place I call home...</em></h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]</p><h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2><h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS </strong></h2><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]</p><p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p><h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES </strong></h2><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|100px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"4\" specialty=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg\" parallax=\"on\" parallax_method=\"off\" custom_padding=\"0px||9px|0px\" custom_padding_tablet=\"0px||0px|\" transparent_background=\"off\" locked=\"off\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation=\"fade_in\" sticky=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" parent_locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro|700|||||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px||4px|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" parent_locked=\"off\"]</p><p><span style=\"color: #808080;\">(0778) 371777<br /> </span></p><p>[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" animation=\"fade_in\" sticky=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" parent_locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px|||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" parent_locked=\"off\"]</p><p><span style=\"color: #808080;\">Jl. Ahmad Yani, Muka Kuning</span></p><p><span style=\"color: #808080;\">Batam - Indonesia</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"132px||120px|\" custom_padding_tablet=\"60px||120px|\" use_custom_gutter=\"on\" gutter_width=\"4\" make_equal=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.96\" parent_locked=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" parent_locked=\"off\"] Get In Touch [/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"510px\" module_alignment=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" parent_locked=\"off\" /][et_pb_contact_form captcha=\"off\" form_background_color=\"#f9f9f9\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.47\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" title_text_color=\"#848282\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" form_field_text_color=\"#848282\" border_radii=\"on|3px|3px|3px|3px\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"4\" button_border_color=\"#d94b6a\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Montserrat||||\" button_use_icon=\"default\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" input_border_radius=\"3\" parent_locked=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]</p>", "Home", "", "publish", "closed", "closed", "", "home", "", "", "2018-01-26 10:01:52", "2018-01-26 10:01:52", "", "0", "http://panbilresidence.com/et_pb_layout/home/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3923", "1", "2018-01-26 14:35:20", "2018-01-26 14:35:20", "", "_MG_9138", "", "inherit", "open", "closed", "", "_mg_9138", "", "", "2018-01-26 14:35:20", "2018-01-26 14:35:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9138.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3945", "1", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "process-icon-1", "", "inherit", "open", "closed", "", "process-icon-1", "", "", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3946", "1", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "process-icon-3", "", "inherit", "open", "closed", "", "process-icon-3", "", "", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3947", "1", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "process-icon-4", "", "inherit", "open", "closed", "", "process-icon-4", "", "", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3948", "1", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "section-background", "", "inherit", "open", "closed", "", "section-background", "", "", "2018-01-30 13:54:52", "2018-01-30 13:54:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3949", "1", "2018-01-30 13:54:53", "2018-01-30 13:54:53", "", "web-design-background-02", "", "inherit", "open", "closed", "", "web-design-background-02", "", "", "2018-01-30 13:54:53", "2018-01-30 13:54:53", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3950", "1", "2018-01-30 13:54:55", "2018-01-30 13:54:55", "", "web-agency-illustration_02", "", "inherit", "open", "closed", "", "web-agency-illustration_02", "", "", "2018-01-30 13:54:55", "2018-01-30 13:54:55", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-agency-illustration_02.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3951", "1", "2018-01-30 13:54:56", "2018-01-30 13:54:56", "", "web-agency-illustration_01", "", "inherit", "open", "closed", "", "web-agency-illustration_01", "", "", "2018-01-30 13:54:56", "2018-01-30 13:54:56", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-agency-illustration_01.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3952", "1", "2018-01-30 13:54:56", "2018-01-30 13:54:56", "", "pricing-3", "", "inherit", "open", "closed", "", "pricing-3", "", "", "2018-01-30 13:54:56", "2018-01-30 13:54:56", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/pricing-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3953", "1", "2018-01-30 13:54:57", "2018-01-30 13:54:57", "", "project-1", "", "inherit", "open", "closed", "", "project-1", "", "", "2018-01-30 13:54:57", "2018-01-30 13:54:57", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3954", "1", "2018-01-30 13:54:57", "2018-01-30 13:54:57", "", "project-6", "", "inherit", "open", "closed", "", "project-6", "", "", "2018-01-30 13:54:57", "2018-01-30 13:54:57", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3955", "1", "2018-01-30 13:54:59", "2018-01-30 13:54:59", "", "project-2", "", "inherit", "open", "closed", "", "project-2", "", "", "2018-01-30 13:54:59", "2018-01-30 13:54:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3956", "1", "2018-01-30 13:54:59", "2018-01-30 13:54:59", "", "web-design-background-03", "", "inherit", "open", "closed", "", "web-design-background-03", "", "", "2018-01-30 13:54:59", "2018-01-30 13:54:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3957", "1", "2018-01-30 13:55:00", "2018-01-30 13:55:00", "", "web-design-01", "", "inherit", "open", "closed", "", "web-design-01", "", "", "2018-01-30 13:55:00", "2018-01-30 13:55:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3958", "1", "2018-01-30 13:55:00", "2018-01-30 13:55:00", "", "section-background-3", "", "inherit", "open", "closed", "", "section-background-3", "", "", "2018-01-30 13:55:00", "2018-01-30 13:55:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/section-background-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3962", "1", "2018-01-30 13:55:03", "2018-01-30 13:55:03", "", "header-bg-3-1", "", "inherit", "open", "closed", "", "header-bg-3-1", "", "", "2018-01-30 13:55:03", "2018-01-30 13:55:03", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/header-bg-3-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3963", "1", "2018-01-30 13:55:05", "2018-01-30 13:55:05", "", "section-background-2", "", "inherit", "open", "closed", "", "section-background-2", "", "", "2018-01-30 13:55:05", "2018-01-30 13:55:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/section-background-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3964", "1", "2018-01-30 13:55:05", "2018-01-30 13:55:05", "", "image-4", "", "inherit", "open", "closed", "", "image-4", "", "", "2018-01-30 13:55:05", "2018-01-30 13:55:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/image-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3965", "1", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "web-design-bg-texture_01", "", "inherit", "open", "closed", "", "web-design-bg-texture_01", "", "", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3966", "1", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "web-design-bg-texture_03", "", "inherit", "open", "closed", "", "web-design-bg-texture_03", "", "", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3967", "1", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "web-design-bg-texture_02", "", "inherit", "open", "closed", "", "web-design-bg-texture_02", "", "", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3968", "1", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "office-1", "", "inherit", "open", "closed", "", "office-1", "", "", "2018-01-30 13:56:16", "2018-01-30 13:56:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/office-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3969", "1", "2018-01-30 13:56:17", "2018-01-30 13:56:17", "", "office-2", "", "inherit", "open", "closed", "", "office-2", "", "", "2018-01-30 13:56:17", "2018-01-30 13:56:17", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/office-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3970", "1", "2018-01-30 13:56:19", "2018-01-30 13:56:19", "", "office-3", "", "inherit", "open", "closed", "", "office-3", "", "", "2018-01-30 13:56:19", "2018-01-30 13:56:19", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/office-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3971", "1", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "icon-benefit-1", "", "inherit", "open", "closed", "", "icon-benefit-1", "", "", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3972", "1", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "icon-benefit-4", "", "inherit", "open", "closed", "", "icon-benefit-4", "", "", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3973", "1", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "icon-benefit-3", "", "inherit", "open", "closed", "", "icon-benefit-3", "", "", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3974", "1", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "icon-benefit-2", "", "inherit", "open", "closed", "", "icon-benefit-2", "", "", "2018-01-30 13:56:20", "2018-01-30 13:56:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3975", "1", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "icon-benefit-6", "", "inherit", "open", "closed", "", "icon-benefit-6", "", "", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-6.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3976", "1", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "icon-benefit-5", "", "inherit", "open", "closed", "", "icon-benefit-5", "", "", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-5.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3977", "1", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "project-9", "", "inherit", "open", "closed", "", "project-9", "", "", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3978", "1", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "project-3", "", "inherit", "open", "closed", "", "project-3", "", "", "2018-01-30 13:56:22", "2018-01-30 13:56:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3979", "1", "2018-01-30 13:56:23", "2018-01-30 13:56:23", "", "project-4", "", "inherit", "open", "closed", "", "project-4", "", "", "2018-01-30 13:56:23", "2018-01-30 13:56:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3980", "1", "2018-01-30 13:56:26", "2018-01-30 13:56:26", "", "project-5", "", "inherit", "open", "closed", "", "project-5", "", "", "2018-01-30 13:56:26", "2018-01-30 13:56:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3981", "1", "2018-01-30 13:56:26", "2018-01-30 13:56:26", "", "project-7", "", "inherit", "open", "closed", "", "project-7", "", "", "2018-01-30 13:56:26", "2018-01-30 13:56:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3982", "1", "2018-01-30 13:56:27", "2018-01-30 13:56:27", "", "project-8", "", "inherit", "open", "closed", "", "project-8", "", "", "2018-01-30 13:56:27", "2018-01-30 13:56:27", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/project-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205400", "1", "2018-01-03 04:32:38", "2018-01-03 04:32:38", "[et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/header-bg-3.jpg\" custom_padding=\"200px|0px|200px|0px\" custom_padding_tablet=\"200px||200px|\" custom_padding_phone=\"140px||140px|\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Full Service Web Design Agency</h1>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r[/et_pb_text][et_pb_button button_text=\"Our Work\" button_alignment=\"center\" background_layout=\"dark\" admin_label=\"Button\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#3644af\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1fb6e9\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Services\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"601px\" module_alignment=\"center\"]<h2>Our Services</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Services\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Branding\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-1.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#1fb6ea\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"SEO\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-2.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#3644AF\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-3.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\" #2A3443\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Clients Logo Grid\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/logo-grid.jpg\" admin_label=\"Logos\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Web Design CTA\" _builder_version=\"3.0.93\" custom_padding=\"100px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-20px\" box_shadow_color=\"#f3f5f9\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"||0px|\" custom_padding_tablet=\"|||10%\" custom_margin=\"|||\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||10%\" padding_1_last_edited=\"on|tablet\" admin_label=\"Contents\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||10%\" padding_last_edited=\"on|tablet\" padding_bottom=\"60px\" padding_left=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" custom_margin=\"|||\" locked=\"off\"]<h2>Award Winning Websites</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod.\r[/et_pb_text][et_pb_button button_text=\"Our Work\" button_alignment=\"left\" background_layout=\"dark\" admin_label=\"Button\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#3644af\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#2a3443\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/laptop-right-overflow_2x.png\" align=\"right\" always_center_on_mobile=\"off\" _builder_version=\"3.0.93\" module_alignment=\"right\" custom_padding_tablet=\"|||10%\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f3f5f9\" admin_label=\"Mobile Design CTA\" _builder_version=\"3.0.93\" custom_padding=\"100px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-40px\" box_shadow_color=\"#ffffff\"][et_pb_row custom_padding=\"|0px|0px|0px\" padding_top_2=\"80px\" padding_bottom_2=\"80px\" padding_2_last_edited=\"on|tablet\" admin_label=\"Contents\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/phone-portrait-white.png\" align=\"center\" _builder_version=\"3.0.93\" max_width_tablet=\"600px\" max_width_phone=\"600px\" max_width_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|tablet\" padding_bottom=\"80px\" padding_top=\"80px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" custom_margin=\"|||\" locked=\"off\"]<h2>We Design for Mobile Plaforms, too.</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel.\r[/et_pb_text][et_pb_button button_text=\"Our Work\" button_alignment=\"left\" background_layout=\"dark\" admin_label=\"Button\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#3644af\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#2a3443\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Web Design CTA\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-01.jpg\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\"][et_pb_row custom_padding=\"27px|0px|0px|0px\" admin_label=\"Contents\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" locked=\"off\"]<h2>We Make Your Website Work Everywhere.</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel.\r\n\r\nSed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel.In hac habitasse platea dictumst.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"200px|||\" admin_label=\"Contents\" _builder_version=\"3.0.93\" custom_margin_tablet=\"100px|||\" custom_margin_last_edited=\"on|tablet\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-140px\" box_shadow_color=\"#2a3443\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"http://panbilresidence.com/wp-content/uploads/2018/01/video-overlay.jpg\" _builder_version=\"3.0.93\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#2a3443\" admin_label=\"Work Process Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Texts And Button\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_color=\"#ffffff\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"left\"]<h2>Our Trademarked\r\nProcess &amp; Workflow.</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_color=\"#ffffff\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"left\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"left\" background_layout=\"dark\" admin_label=\"Button\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"0px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#3644af\" button_bg_color_hover=\"#ffffff\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Work Process\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Research\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-2.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Wireframes\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-1.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"20%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-3.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-4.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\" animation_intensity_slide=\"20%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#2a3443\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Let\'s Work Together</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#3644AF\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Project Title\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Landing", "", "publish", "closed", "closed", "", "web-design-landing", "", "", "2018-01-03 04:32:38", "2018-01-03 04:32:38", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-landing/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("3921", "1", "2018-01-26 10:04:57", "2018-01-26 10:04:57", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\n\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\n\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|100px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"4\" specialty=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9094.jpg\" parallax=\"on\" parallax_method=\"off\" custom_padding=\"0px||9px|0px\" custom_padding_tablet=\"0px||0px|\" transparent_background=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/02.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" animation=\"fade_in\" sticky=\"on\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro|700|||||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px||4px|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">(0778) 371777<br /> </span></p>[/et_pb_text][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/03.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.0.47\" custom_margin=\"90px|||\" animation_style=\"fade\" animation_duration=\"500ms\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" animation=\"fade_in\" sticky=\"on\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"25px|||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<p><span style=\"color: #808080;\">Jl. Ahmad Yani, Muka Kuning</span></p>\n<p><span style=\"color: #808080;\">Batam - Indonesia</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"132px||120px|\" custom_padding_tablet=\"60px||120px|\" use_custom_gutter=\"on\" gutter_width=\"4\" make_equal=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.96\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\" _builder_version=\"3.0.47\" box_shadow_position=\"outer\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#e0b65c\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]Get In Touch[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" text_line_height=\"1.4em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"510px\" module_alignment=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"#f9f9f9\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" title_text_color=\"#848282\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" form_field_text_color=\"#848282\" border_radii=\"on|3px|3px|3px|3px\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#e0b65c\" button_border_width=\"0px\" button_border_color=\"#ffffff\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Montserrat||||\" button_use_icon=\"default\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#e0b65c\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" input_border_radius=\"3\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-26 10:04:57", "2018-01-26 10:04:57", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("3943", "1", "2018-01-30 13:54:51", "2018-01-30 13:54:51", "", "video-overlay", "", "inherit", "open", "closed", "", "video-overlay", "", "", "2018-01-30 13:54:51", "2018-01-30 13:54:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/video-overlay.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3925", "1", "2018-01-26 14:40:41", "2018-01-26 14:40:41", "", "_MG_9136", "", "inherit", "open", "closed", "", "_mg_9136", "", "", "2018-01-26 14:40:41", "2018-01-26 14:40:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9136.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3944", "1", "2018-01-30 13:54:51", "2018-01-30 13:54:51", "", "process-icon-2", "", "inherit", "open", "closed", "", "process-icon-2", "", "", "2018-01-30 13:54:51", "2018-01-30 13:54:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("3928", "1", "2018-01-29 07:38:06", "2018-01-29 07:38:06", "", "_MG_9147", "", "inherit", "open", "closed", "", "_mg_9147", "", "", "2018-01-29 07:38:06", "2018-01-29 07:38:06", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9147.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("3929", "1", "2018-01-29 07:59:51", "2018-01-29 07:59:51", "", "_MG_9522", "", "inherit", "open", "closed", "", "_mg_9522", "", "", "2018-01-29 07:59:51", "2018-01-29 07:59:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9522.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205399", "1", "2018-01-03 04:32:20", "2018-01-03 04:32:20", "[et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#ffffff\" background_color_gradient_overlays_image=\"on\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-02.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" locked=\"off\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Let\'s Build Something</h1>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing Tables Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Prices\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_pricing_tables header_background_color=\"rgba(0,0,0,0)\" show_bullet=\"off\" show_featured_drop_shadow=\"off\" center_list_items=\"on\" _builder_version=\"3.0.93\" header_font=\"Montserrat|500|||||||\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_text_color=\"#ffffff\" subheader_font=\"Ubuntu||||||||\" subheader_text_color=\"rgba(255,255,255,0.7)\" subheader_line_height=\"1.8em\" price_font=\"Montserrat|500|||||||\" price_font_size=\"50px\" price_text_color=\"#ffffff\" price_line_height=\"1em\" background_color=\"#31c56e\" border_radii=\"on||||\" border_width_all=\"0px\" custom_padding=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#31c56e\" button_bg_color=\"#ffffff\" button_border_width=\"12px\" button_border_color=\"#ffffff\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#2a3443\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_pricing_table title=\"Website\" subtitle=\"starting at\" sum=\"$999\" button_url=\"#\" button_text=\"Get Started\" _builder_version=\"3.0.93\" header_font=\"|500|||||||\" body_font=\"||||||||\" subheader_font=\"||||||||\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"center\" custom_button=\"off\" custom_css_pricing_top=\"border: none;\"]<p>+ 1 Complete Product</p>\r\n<p>+ 1 Year Support</p>\r\n<p>+ Dedicated Server</p>\r\n<p>+ 1 Research Demos</p>[/et_pb_pricing_table][/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_pricing_tables header_background_color=\"rgba(0,0,0,0)\" show_bullet=\"off\" show_featured_drop_shadow=\"off\" center_list_items=\"on\" _builder_version=\"3.0.93\" header_font=\"Montserrat|500|||||||\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_text_color=\"#ffffff\" subheader_font=\"Ubuntu||||||||\" subheader_text_color=\"rgba(255,255,255,0.7)\" subheader_line_height=\"1.8em\" price_font=\"Montserrat|500|||||||\" price_font_size=\"50px\" price_text_color=\"#ffffff\" price_line_height=\"1em\" background_color=\"#3644af\" border_radii=\"on||||\" border_width_all=\"0px\" custom_padding=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"12px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#2a3443\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"][et_pb_pricing_table title=\"Brand + Website\" subtitle=\"starting at\" sum=\"$1500\" button_url=\"#\" button_text=\"Get Started\" _builder_version=\"3.0.93\" header_font=\"|500|||||||\" body_font=\"||||||||\" subheader_font=\"||||||||\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"center\" custom_button=\"off\" custom_css_pricing_top=\"border: none;\"]<p>+ 1 Complete Product</p>\r\n<p>+ 1 Year Support</p>\r\n<p>+ Dedicated Server</p>\r\n<p>+ 1 Research Demos</p>[/et_pb_pricing_table][/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_pricing_tables header_background_color=\"rgba(0,0,0,0)\" show_bullet=\"off\" show_featured_drop_shadow=\"off\" center_list_items=\"on\" _builder_version=\"3.0.93\" header_font=\"Montserrat|500|||||||\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_text_color=\"#ffffff\" subheader_font=\"Ubuntu||||||||\" subheader_text_color=\"rgba(255,255,255,0.7)\" subheader_line_height=\"1.8em\" price_font=\"Montserrat|500|||||||\" price_font_size=\"50px\" price_text_color=\"#ffffff\" price_line_height=\"1em\" background_color=\"#2a3443\" border_radii=\"on||||\" border_width_all=\"0px\" custom_padding=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#3644af\" button_border_width=\"12px\" button_border_color=\"#3644af\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#2a3443\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"][et_pb_pricing_table title=\"Full Web Package\" subtitle=\"starting at\" sum=\"$2000\" button_url=\"#\" button_text=\"Get Started\" _builder_version=\"3.0.93\" header_font=\"|500|||||||\" body_font=\"||||||||\" subheader_font=\"||||||||\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"center\" custom_button=\"off\" custom_css_pricing_top=\"border: none;\"]<p>+ 1 Complete Product</p>\r\n<p>+ 1 Year Support</p>\r\n<p>+ Dedicated Server</p>\r\n<p>+ 1 Research Demos</p>[/et_pb_pricing_table][/et_pb_pricing_tables][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" background_color_2=\"#3644AF\" background_color_3=\"#2a3443\" admin_label=\"Contact Link\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Link\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(42,52,67,0.5)\" link_font=\"Ubuntu||||||||\" link_font_size=\"16px\" link_text_color=\"#1fb6e9\" ul_font=\"||||||||\" header_font=\"Montserrat||||||||\" header_text_align=\"center\" header_font_size=\"50px\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" text_orientation=\"center\" custom_padding=\"|||\"]<p>Have something more custom in mind? <a href=\"#top\">Get A Quote</a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#2A3443\" admin_label=\"Feature Details\" _builder_version=\"3.0.92\" custom_padding=\"|||\"][et_pb_row padding_top_1=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" custom_margin=\"|||\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"9.0.0.0-1514939601943\" contenteditable=\"true\">Build Something Tailor Made For Your Users.</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"left\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"0px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#3644af\" button_bg_color_hover=\"#ffffff\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-agency-illustration_02.png\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#3644AF\" admin_label=\"Feature Details\" _builder_version=\"3.0.92\" custom_padding=\"|||\"][et_pb_row padding_top_2=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-agency-illustration_01.png\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" custom_margin=\"|||\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"10.0.1.0-1514939947844\" contenteditable=\"true\">24 Hour Support </h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"left\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"0px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#3644af\" button_bg_color_hover=\"#ffffff\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" module_alignment=\"left\" custom_margin=\"|||\" locked=\"off\"]<h2>Trusted by Brands Worldwide</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r\n<p>Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod.</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/pricing-3.jpg\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.93\" custom_padding=\"85px|0px|85px|0px\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" locked=\"off\"]<h2>Recent Work</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-1.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-6.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-2.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_text=\"View More\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#3644af\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#2a3443\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f3f5f9\" admin_label=\"Testimonial\" _builder_version=\"3.0.93\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb use_icon=\"on\" font_icon=\"%%91%%\" icon_color=\"#31c56e\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel. Fusce lorem leo, vehicula at nibh quis, facilisis accumsan turpis.\r\n\r\n- Ali Sayed\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#f3f5f9\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Let\'s Work Together</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#3644AF\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Project Title\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Pricing", "", "publish", "closed", "closed", "", "web-design-pricing", "", "", "2018-01-03 04:32:20", "2018-01-03 04:32:20", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-pricing/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205398", "1", "2018-01-03 04:32:08", "2018-01-03 04:32:08", "[et_pb_section fb_built=\"1\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#ffffff\" background_color_gradient_overlays_image=\"on\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-03.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Our Services</h1>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Services\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\"][et_pb_row admin_label=\"Services\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Branding\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-1.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#1fb6ea\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"SEO\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-2.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#3644AF\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-3.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\" #2A3443\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Things We Do Best\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<h2>What We Do Best</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Core Skill\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%157%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Search Engine Optimization\" use_icon=\"on\" font_icon=\"%%158%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Core Skill\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Content Strategy\" use_icon=\"on\" font_icon=\"%%71%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Information Architecture\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Business Consulting\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f3f5f9\" admin_label=\"Feature - Image Right\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#ffffff\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Work with a Team of Talented Design Ninjas</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-01.jpg\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.93\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#2a3443\" admin_label=\"Fun Facts\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\"]<h2>Fun Facts</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Numbers\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Happy Clients\" number=\"65\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#4046B9\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Completed Projects\" number=\"165\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#1FB6E9\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Office Locations\" number=\"3\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#EB514E\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Team Members\" number=\"42\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#354154\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\" animation_intensity_slide=\"10%\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Recent Work\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background-3.jpg\" custom_padding=\"18%||18%|\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h2>Our Latest Projects</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>[/et_pb_text][et_pb_button button_text=\"View Work\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#EB514E\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#2a3443\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f3f5f9\" admin_label=\"Testimonials\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" locked=\"off\"]<h2>What We Do Best</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_testimonial author=\"Jake Donavan\" job_title=\"Designer\" company_name=\"Elegant Themes\" portrait_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/portraits-circle-small_2.png\" quote_icon=\"off\" background_color=\"#ffffff\" background_layout=\"light\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"|||\" custom_padding=\"50px||50px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_testimonial author=\"Jessica Nichols\" job_title=\"CEO\" company_name=\"Turn Studios\" portrait_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/portraits-circle-small_1.png\" quote_icon=\"off\" background_color=\"#ffffff\" background_layout=\"light\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"|||\" custom_padding=\"50px||50px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_testimonial author=\"Rozaro Federar\" job_title=\"Head Chef\" company_name=\"Divi Restaurant\" portrait_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/portraits-circle-small_6.png\" quote_icon=\"off\" background_color=\"#ffffff\" background_layout=\"light\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"|||\" custom_padding=\"50px||50px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#2a3443\" admin_label=\"Work Process Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Texts And Button\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_color=\"#ffffff\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"left\"]<h2>Our Trademarked <br />Process & Workflow.</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_color=\"#ffffff\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"left\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>\r[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"left\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"0px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#3644af\" button_bg_color_hover=\"#ffffff\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Work Process\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Research\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-2.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Wireframes\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-1.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"20%\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-3.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-4.png\" admin_label=\"Step\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\" animation_intensity_slide=\"20%\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing.</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#2a3443\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Let\'s Work Together</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#3644AF\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Project Title\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Services", "", "publish", "closed", "closed", "", "web-design-services", "", "", "2018-01-03 04:32:08", "2018-01-03 04:32:08", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-services/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205397", "1", "2018-01-03 04:31:57", "2018-01-03 04:31:57", "[et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#ffffff\" background_color_gradient_overlays_image=\"on\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/header-bg-3-1.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Contact Us</h1>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Contact Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|0px|0px\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Tittle\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.5)\" header_font=\"||||||||\" header_text_color=\"#2a3443\" header_2_font=\"||||||||\" header_2_text_color=\"#ffffff\" header_4_font=\"Montserrat|700|||||||\" header_4_font_size=\"22px\" header_4_text_color=\"#ffffff\" header_4_line_height=\"1.4em\" max_width=\"640px\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"|||\"]<h4>Send Us an Email</h4>[/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.02)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" module_alignment=\"center\" custom_margin=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Tittle\" field_title=\"Project Tittle\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Email\" admin_label=\"Address\" _builder_version=\"3.0.93\" header_font=\"Ubuntu||||||||\" header_font_size=\"16px\" header_text_color=\"rgba(255,255,255,0.7)\" header_line_height=\"1.9em\" body_font=\"Ubuntu|700|||||||\" body_font_size=\"22px\" body_text_color=\"#ffffff\" body_line_height=\"1.5em\"]email@domain.com\r[/et_pb_blurb][et_pb_blurb title=\"Phone\" admin_label=\"Address\" _builder_version=\"3.0.93\" header_font=\"Ubuntu||||||||\" header_font_size=\"16px\" header_text_color=\"rgba(255,255,255,0.7)\" header_line_height=\"1.9em\" body_font=\"Ubuntu|700|||||||\" body_font_size=\"22px\" body_text_color=\"#ffffff\" body_line_height=\"1.5em\"]+(123) 443-769-456\r[/et_pb_blurb][et_pb_blurb title=\"Address\" admin_label=\"Address\" _builder_version=\"3.0.93\" header_font=\"Ubuntu||||||||\" header_font_size=\"16px\" header_text_color=\"rgba(255,255,255,0.7)\" header_line_height=\"1.9em\" body_font=\"Ubuntu|700|||||||\" body_font_size=\"22px\" body_text_color=\"#ffffff\" body_line_height=\"1.5em\"]<p>ODIO Studios,<br /><span style=\"font-size: 22px;\">PO Box 4535<br /></span><span style=\"font-size: 22px;\">San Francisco, CA</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" admin_label=\"Map\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_map address=\"San Francisco, CA, USA\" zoom_level=\"11\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" _builder_version=\"3.0.93\"][et_pb_map_pin pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.0.93\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Contact", "", "publish", "closed", "closed", "", "web-design-contact", "", "", "2018-01-03 04:31:57", "2018-01-03 04:31:57", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-contact/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205396", "1", "2018-01-03 04:31:45", "2018-01-03 04:31:45", "[et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#ffffff\" background_color_gradient_overlays_image=\"on\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background-2.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Join Our Team</h1>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA with Image\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-269px\" box_shadow_color=\"#f3f5fa\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|0px|0px\" admin_label=\"Tittle Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Come Help Us Make the Web a Better Place.\" button_url=\"#top\" button_text=\"Our Work\" background_color=\"#3644AF\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" header_font_size=\"40px\" header_line_height=\"1.4em\" body_font=\"Ubuntu|500|||||||\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" text_orientation=\"left\" max_width_last_edited=\"off|desktop\" module_alignment=\"right\" custom_padding=\"100px|70px|100px|70px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1FB6E9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#2a3443\" button_border_color_hover=\"#2a3443\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r\n<p>Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel.</p>\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/image-4.jpg\" _builder_version=\"3.0.93\" custom_margin=\"150px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#F3F5FA\" admin_label=\"Teams & Positions\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Row\" _builder_version=\"3.0.92\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<h2>Teams & Open Roles</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Careers\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Development\" background_layout=\"dark\" admin_label=\"Careers\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" background_color=\"#1fb6ea\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_01.jpg\" background_blend=\"overlay\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"30px||30px|\" custom_padding=\"80px|30px|80px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]<p>Habitasse platea dictumst. Vivamus adipiscing fermentum quam.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Human Resources\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" background_color=\"#31C56F\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_03.jpg\" background_blend=\"overlay\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"30px||30px|\" custom_padding=\"80px|30px|80px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]<p>Habitasse platea dictumst. Vivamus adipiscing fermentum quam.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" background_layout=\"dark\" admin_label=\"Careers\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" background_color=\"#3644AF\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_02.jpg\" background_blend=\"overlay\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"30px||30px|\" custom_padding=\"80px|30px|80px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"]<p>Dome In hac habitasse platea dictumst. Vivamus adipiscing.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Marketing\" background_layout=\"dark\" admin_label=\"Careers\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" background_color=\"#FFA03B\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_01.jpg\" background_blend=\"overlay\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"30px||30px|\" custom_padding=\"80px|30px|80px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"]<p>Dome In hac habitasse platea dictumst. Vivamus adipiscing.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Support\" background_layout=\"dark\" admin_label=\"Careers\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" background_color=\"#2A3443\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_03.jpg\" background_blend=\"overlay\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"30px||30px|\" custom_padding=\"80px|30px|80px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Risk & Security\" background_layout=\"dark\" admin_label=\"Careers\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" background_color=\"#EB514E\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-bg-texture_02.jpg\" background_blend=\"overlay\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"30px||30px|\" custom_padding=\"80px|30px|80px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum.</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#F3F5FA\" admin_label=\"Office \" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Texts And Button\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" custom_margin=\"|||\"]<h2>Life Inside Our Office</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r\n<p>Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel. </p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Life Inside Our Office\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/office-1.jpg\" _builder_version=\"3.0.93\" border_radii=\"on|5px|5px|5px|5px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/office-2.jpg\" _builder_version=\"3.0.93\" border_radii=\"on|5px|5px|5px|5px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/office-3.jpg\" _builder_version=\"3.0.93\" border_radii=\"on|5px|5px|5px|5px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Perks & Benefits\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"500px\" module_alignment=\"left\" custom_margin=\"|||\" locked=\"off\"]<h2>Perks & Benefits</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r\n<p>Nam vel iaculis mauris. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Vision and Dental\" icon_color=\"#2A3443\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-1.png\" icon_placement=\"left\" icon_font_size_last_edited=\"off|desktop\" admin_label=\"Benefit\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" custom_margin=\"||60px|\" custom_padding=\"|||\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Targeted Bonus Program\" icon_color=\"#2A3443\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-4.png\" icon_placement=\"left\" icon_font_size_last_edited=\"off|desktop\" admin_label=\"Benefit\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" custom_margin=\"||60px|\" custom_padding=\"|||\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Competitive Salary\" icon_color=\"#2A3443\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-3.png\" icon_placement=\"left\" icon_font_size_last_edited=\"off|desktop\" admin_label=\"Benefit\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" custom_margin=\"||60px|\" custom_padding=\"|||\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Daily Breakfast & Lunch\" icon_color=\"#2A3443\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-2.png\" icon_placement=\"left\" icon_font_size_last_edited=\"off|desktop\" admin_label=\"Benefit\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" custom_margin=\"||60px|\" custom_padding=\"|||\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Health Care\" icon_color=\"#2A3443\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-6.png\" icon_placement=\"left\" icon_font_size_last_edited=\"off|desktop\" admin_label=\"Benefit\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" custom_margin=\"||60px|\" custom_padding=\"|||\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][et_pb_blurb title=\"Annual Company Trip\" icon_color=\"#2A3443\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-benefit-5.png\" icon_placement=\"left\" icon_font_size_last_edited=\"off|desktop\" admin_label=\"Benefit\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" custom_margin=\"||60px|\" custom_padding=\"|||\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#ffffff\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Let\'s Work Together</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#3644AF\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Careers", "", "publish", "closed", "closed", "", "web-design-careers", "", "", "2018-01-03 04:31:45", "2018-01-03 04:31:45", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-careers/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205395", "1", "2018-01-03 04:30:04", "2018-01-03 04:30:04", "[et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background-3.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Recent Work</h1>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.93\"][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-1.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-9.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-2.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-3.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-4.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-5.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-6.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-7.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.93\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-8.jpg\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#ffffff\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Let\'s Work Together</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#3644AF\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Project Title\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Portfolio", "", "publish", "closed", "closed", "", "web-design-portfolio", "", "", "2018-01-03 04:30:04", "2018-01-03 04:30:04", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-portfolio/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205394", "1", "2018-01-03 04:29:55", "2018-01-03 04:29:55", "[et_pb_section fb_built=\"1\" background_color=\"#3644af\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/header-bg-3.jpg\" custom_padding=\"200px|0px|200px|0px\" custom_padding_tablet=\"200px||200px|\" custom_padding_phone=\"140px||140px|\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]<h1>Full Service Web Design Agency</h1>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>\r[/et_pb_text][et_pb_button button_text=\"Our Work\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#3644af\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1fb6e9\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Services\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"601px\" module_alignment=\"center\"]<h2>What We Do</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_margin=\"||100px|\" admin_label=\"Services\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Branding\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-1.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#1fb6ea\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"SEO\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-2.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#3644AF\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-3.png\" background_layout=\"dark\" admin_label=\"Service\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\" #2A3443\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"]In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Core Skill\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%157%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Core Skill\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Search Engine Optimization\" use_icon=\"on\" font_icon=\"%%158%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Information Architecture\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. </p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Core Skill\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Content Strategy\" use_icon=\"on\" font_icon=\"%%71%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Business Consulting\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" admin_label=\"Skill\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#2a3443\" admin_label=\"Recent Projects\" _builder_version=\"3.0.93\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"601px\" module_alignment=\"center\"]<h2>Recent Work</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.93\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-6.jpg\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-7.jpg\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-4.jpg\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Name\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/project-3.jpg\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|700|||||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\" animation_intensity_slide=\"10%\" animation=\"off\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#2a3443\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" admin_label=\"Contact Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"10%\" padding_right=\"10%\" padding_top=\"140px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]<h2>Let\'s Work Together</h2>\r\n<p>In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#3644AF\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Project Title\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Web Agency - Home", "", "publish", "closed", "closed", "", "web-design-home", "", "", "2018-01-03 04:29:55", "2018-01-03 04:29:55", "", "0", "http://panbilresidence.com/et_pb_layout/web-design-home/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205401", "1", "2018-01-30 14:16:19", "2018-01-30 14:16:19", "", "restaurant-hero-03", "", "inherit", "open", "closed", "", "restaurant-hero-03", "", "", "2018-01-30 14:16:19", "2018-01-30 14:16:19", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205402", "1", "2018-01-30 14:16:20", "2018-01-30 14:16:20", "", "food-09", "", "inherit", "open", "closed", "", "food-09", "", "", "2018-01-30 14:16:20", "2018-01-30 14:16:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-09.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205403", "1", "2018-01-30 14:16:21", "2018-01-30 14:16:21", "", "restaurant-hero-04", "", "inherit", "open", "closed", "", "restaurant-hero-04", "", "", "2018-01-30 14:16:21", "2018-01-30 14:16:21", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205404", "1", "2018-01-30 14:16:24", "2018-01-30 14:16:24", "", "stars", "", "inherit", "open", "closed", "", "stars", "", "", "2018-01-30 14:16:24", "2018-01-30 14:16:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/stars.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("30243", "1", "2017-10-04 19:15:46", "2017-10-04 19:15:46", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p> </p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p> </p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-09.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\nOur Story\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\n\n<h1>Where It All Began</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /></em><span style=\"color: #c39d63;\">John Doe</span></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\nIn the Spotlight\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\n\n<h1>Awards & Recognition</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\n\n<p>Features</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\n\n<h1>What We Offer</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.77\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.77\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://youtu.be/FkQuawiGWUw\" image_src=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" _builder_version=\"3.0.77\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Testimonials</p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\n<p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find” </h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]<p>\"<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.</span>\"</p>\n<p><span style=\"color: #1f1f1f;\"> Divi</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]<p>\"<span>Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.</span> \"</p>\n<p><span style=\"color: #1f1f1f;\"> Bloom</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]<p>\"<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.</span>\"</p>\n<p><span style=\"color: #1f1f1f;\"> Extra</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]<p>\"<span>Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"</span></p>\n<p><span style=\"color: #1f1f1f;\"> Monarch</span></p>\n<p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n<p>\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n<p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]<p>Dialogue is an essential part of any script</p>\n<p>\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_About", "", "publish", "closed", "closed", "", "restaurant_about", "", "", "2017-10-04 19:15:46", "2017-10-04 19:15:46", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_about/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205405", "1", "2018-01-30 14:17:04", "2018-01-30 14:17:04", "", "restaurant-hero-02", "", "inherit", "open", "closed", "", "restaurant-hero-02", "", "", "2018-01-30 14:17:04", "2018-01-30 14:17:04", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("30228", "1", "2017-10-04 18:58:39", "2017-10-04 18:58:39", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"News & Events\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\"]<p> </p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p> </p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Blog\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" use_border_color=\"on\" border_width=\"0px\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off%22\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off%22\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\"]<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_Blog", "", "publish", "closed", "closed", "", "restaurant_blog", "", "", "2017-10-04 18:58:39", "2017-10-04 18:58:39", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_blog/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205406", "1", "2018-01-30 14:17:43", "2018-01-30 14:17:43", "", "restaurant-hero-07", "", "inherit", "open", "closed", "", "restaurant-hero-07", "", "", "2018-01-30 14:17:43", "2018-01-30 14:17:43", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205407", "1", "2018-01-30 14:17:44", "2018-01-30 14:17:44", "", "food_produce_235-e1506468905186", "", "inherit", "open", "closed", "", "food_produce_235-e1506468905186", "", "", "2018-01-30 14:17:44", "2018-01-30 14:17:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("30217", "1", "2017-10-04 06:17:46", "2017-10-04 06:17:46", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p> </p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p> </p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\n<p>Contact</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\n\n<h1>Get in Touch</h1>\n\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.77\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" use_border_color=\"on\" border_color=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" _builder_version=\"3.0.77\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\n<p>Contact</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\n<p>333 California, St.</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>San Francisco, CA</p>\n<p>Tel: (123) 958-6430</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n<p>Hours of Operation</p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n<p>Dialogue is an essential part of any script</p>\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_Contact", "", "publish", "closed", "closed", "", "restaurant_contact", "", "", "2017-10-04 06:17:46", "2017-10-04 06:17:46", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_contact/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205408", "1", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "food-01", "", "inherit", "open", "closed", "", "food-01", "", "", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205409", "1", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "food-02", "", "inherit", "open", "closed", "", "food-02", "", "", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205410", "1", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "food-08", "", "inherit", "open", "closed", "", "food-08", "", "", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205411", "1", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "food-06", "", "inherit", "open", "closed", "", "food-06", "", "", "2018-01-30 14:20:37", "2018-01-30 14:20:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205412", "1", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "food-05", "", "inherit", "open", "closed", "", "food-05", "", "", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205413", "1", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "food-17", "", "inherit", "open", "closed", "", "food-17", "", "", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205414", "1", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "food-13", "", "inherit", "open", "closed", "", "food-13", "", "", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205415", "1", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "food-19", "", "inherit", "open", "closed", "", "food-19", "", "", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205416", "1", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "food-20", "", "inherit", "open", "closed", "", "food-20", "", "", "2018-01-30 14:20:38", "2018-01-30 14:20:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-20.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205417", "1", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "food-12", "", "inherit", "open", "closed", "", "food-12", "", "", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205418", "1", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "food-15", "", "inherit", "open", "closed", "", "food-15", "", "", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205419", "1", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "food-11", "", "inherit", "open", "closed", "", "food-11", "", "", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205420", "1", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "food-18", "", "inherit", "open", "closed", "", "food-18", "", "", "2018-01-30 14:20:39", "2018-01-30 14:20:39", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-18.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205421", "1", "2018-01-30 14:20:40", "2018-01-30 14:20:40", "", "food-16", "", "inherit", "open", "closed", "", "food-16", "", "", "2018-01-30 14:20:40", "2018-01-30 14:20:40", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205422", "1", "2018-01-30 14:20:40", "2018-01-30 14:20:40", "", "food-14", "", "inherit", "open", "closed", "", "food-14", "", "", "2018-01-30 14:20:40", "2018-01-30 14:20:40", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205423", "1", "2018-01-30 14:20:41", "2018-01-30 14:20:41", "", "food-21", "", "inherit", "open", "closed", "", "food-21", "", "", "2018-01-30 14:20:41", "2018-01-30 14:20:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("30218", "1", "2017-10-04 06:17:53", "2017-10-04 06:17:53", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"A Look Inside\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p> </p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p> </p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Gallery\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px||100px|\" collapsed=\"off\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-01.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-02.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-17.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-13.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-19.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-20.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-12.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-15.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-11.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-18.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-16.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-14.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-21.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n<p>Hours of Operation</p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n<p>Dialogue is an essential part of any script</p>\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_Gallery", "", "publish", "closed", "closed", "", "restaurant_gallery", "", "", "2017-10-04 06:17:53", "2017-10-04 06:17:53", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_gallery/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205424", "1", "2018-01-30 14:21:07", "2018-01-30 14:21:07", "", "restaurant-hero-01", "", "inherit", "open", "closed", "", "restaurant-hero-01", "", "", "2018-01-30 14:21:07", "2018-01-30 14:21:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205425", "1", "2018-01-30 14:21:09", "2018-01-30 14:21:09", "", "kitchen", "", "inherit", "open", "closed", "", "kitchen", "", "", "2018-01-30 14:21:09", "2018-01-30 14:21:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/kitchen.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("30214", "1", "2017-10-04 06:17:26", "2017-10-04 06:17:26", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Only Quality Food\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-01.jpg\" parallax=\"on\" parallax_method=\"on\" max_width_tablet=\"50px\" custom_margin=\"|||\" custom_padding=\"5%||5%|\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_width=\"2px\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_width=\"2px\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p> </p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p> </p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|120px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\nOur Story\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\n\n<h1>Welcome To Royal</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\n<p><span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/kitchen.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Menu Grid\" _builder_version=\"3.0.77\" background_position=\"top_left\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$26.95\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Grilled Fillet</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"200px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$53.3\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Chicken Breast</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-01.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-01.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" header_line_height=\"2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$40.5\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\" locked=\"off\"]\n\n<h1>King Crab</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_text=\"Full Menu\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\n<p>Testimonials</p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\n<h1>What People are Saying</h1>\n<p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>“A Great Find” </h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\n<p>\"<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.</span>\"</p>\n<p><span style=\"color: #1f1f1f;\"> Divi</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>“Fabulous food & flawless service”</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\n<p>\"<span>Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.</span> \"</p>\n<p><span style=\"color: #1f1f1f;\"> Bloom</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>“Another successful experience”</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\n<p>\"<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.</span>\"</p>\n<p><span style=\"color: #1f1f1f;\"> Extra</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>\"Speechless\"</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\n<p>\"<span>Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"</span></p>\n<p><span style=\"color: #1f1f1f;\"> Monarch</span></p>\n<p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n<p>Hours of Operation</p>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n<p>\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n<p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n<p>Dialogue is an essential part of any script</p>\n<p>\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_Home", "", "publish", "closed", "closed", "", "restaurant_home", "", "", "2017-10-04 06:17:26", "2017-10-04 06:17:26", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_home/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205426", "1", "2018-01-30 14:21:36", "2018-01-30 14:21:36", "", "food-07", "", "inherit", "open", "closed", "", "food-07", "", "", "2018-01-30 14:21:36", "2018-01-30 14:21:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205427", "1", "2018-01-30 14:21:36", "2018-01-30 14:21:36", "", "food-04", "", "inherit", "open", "closed", "", "food-04", "", "", "2018-01-30 14:21:36", "2018-01-30 14:21:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205428", "1", "2018-01-30 14:21:37", "2018-01-30 14:21:37", "", "food-03", "", "inherit", "open", "closed", "", "food-03", "", "", "2018-01-30 14:21:37", "2018-01-30 14:21:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("30213", "1", "2017-10-04 06:17:01", "2017-10-04 06:17:01", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Only Quality Food\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_width=\"2px\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_width=\"2px\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p> </p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p> </p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Welcome To Royal\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\nOur Story\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\n\n<h1>Welcome To Royal</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span></p>\n<p><span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\nOnly the Best\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\n\n<h1>Fresh Ingredient, Tasty Meals</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\n\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Menu Grid\" _builder_version=\"3.0.77\" background_position=\"top_left\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$26.95\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Grilled Fillet</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"200px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$53.3\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Chicken Breast</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" header_line_height=\"2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$40.5\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\" locked=\"off\"]\n\n<h1>King Crab</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$40.5\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Sea Trout</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$22.3\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Roasted Bakra</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\n\n$22.3\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\n\n<h1>Roasted Bakra</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\n\n<p>Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\n<p>Testimonials</p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\n<h1>What People are Saying</h1>\n<p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>“A Great Find” </h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\n<p>\"<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.</span>\"</p>\n<p><span style=\"color: #1f1f1f;\"> Divi</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>“Fabulous food & flawless service”</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\n<p>\"<span>Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.</span> \"</p>\n<p><span style=\"color: #1f1f1f;\"> Bloom</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>“Another successful experience”</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\n<p>\"<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.</span>\"</p>\n<p><span style=\"color: #1f1f1f;\"> Extra</span></p>\n<p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\n<h1>\"Speechless\"</h1>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\n<p>\"<span>Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"</span></p>\n<p><span style=\"color: #1f1f1f;\"> Monarch</span></p>\n<p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Our News & Events\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\nDon\'t Miss\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\n\n<h1>Our News And Events</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" use_border_color=\"on\" border_width=\"0px\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n<p>Hours of Operation</p>\n<p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n<p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n<p>\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n<p>Dialogue is an essential part of any script</p>\n<p>\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_Landing", "", "publish", "closed", "closed", "", "restaurant_landing", "", "", "2017-10-04 06:17:01", "2017-10-04 06:17:01", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_landing/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205429", "1", "2018-01-30 14:22:00", "2018-01-30 14:22:00", "", "restaurant-hero-08", "", "inherit", "open", "closed", "", "restaurant-hero-08", "", "", "2018-01-30 14:22:00", "2018-01-30 14:22:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-08.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("30251", "1", "2017-10-04 19:20:21", "2017-10-04 19:20:21", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"The Shop\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-08.jpg\" parallax=\"on\" parallax_method=\"on\" max_width_tablet=\"50px\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_icon_placement=\"right\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_icon_placement=\"right\" button_two_letter_spacing_hover=\"0\"]\n\n<p>&nbsp;</p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam,&nbsp;eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p>&nbsp;</p>\n\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Shop\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_shop columns_number=\"2\" icon_hover_color=\"#ffffff\" hover_overlay_color=\"rgba(195,157,99,0.8)\" _builder_version=\"3.0.77\" title_font=\"Montserrat||||\" title_font_size=\"20px\" price_font=\"Montserrat||||\" price_text_color=\"#c39d63\" price_letter_spacing=\"2px\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"20px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" show_border=\"off\" area=\"sidebar-1\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<p><strong>MON – FRI<br /></strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off&amp;amp;quot;&amp;quot;%22&quot;\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><strong>SAT<br /></strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off&amp;amp;quot;&amp;quot;%22&quot;\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /></b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\"]\n\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Restaurant_Shop", "", "publish", "closed", "closed", "", "restaurant_shop", "", "", "2017-10-04 19:20:21", "2017-10-04 19:20:21", "", "0", "http://panbilresidence.com/et_pb_layout/restaurant_shop/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205431", "1", "2018-01-30 14:23:44", "2018-01-30 14:23:44", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-09.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Where It All Began</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.77\"][et_pb_column type=\"4_4\"][et_pb_video src=\"https://youtu.be/FkQuawiGWUw\" image_src=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" _builder_version=\"3.0.77\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "ABOUT US", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2018-01-30 14:23:44", "2018-01-30 14:23:44", "", "57", "http://panbilresidence.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205432", "1", "2018-01-30 14:31:03", "2018-01-30 14:31:03", "[et_pb_section admin_label=\"section\"]\n		[et_pb_row admin_label=\"row\"]\n			[et_pb_column type=\"4_4\"]\n				[et_pb_text admin_label=\"Text\"]\n					\n				[/et_pb_text]\n			[/et_pb_column]\n		[/et_pb_row]\n	[/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-30 14:31:03", "2018-01-30 14:31:03", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205434", "1", "2018-01-30 14:32:08", "2018-01-30 14:32:08", "[et_pb_section bb_built=\"1\" admin_label=\"Hero Section\" background_color=\"#3644af\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#ffffff\" background_color_gradient_overlays_image=\"on\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/header-bg-3-1.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" locked=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n<h1>Contact Us</h1>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Section\" background_color=\"#3644af\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|0px|0px\"][et_pb_row admin_label=\"Contact Row\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Tittle\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.5)\" header_font=\"||||||||\" header_text_color=\"#2a3443\" header_2_font=\"||||||||\" header_2_text_color=\"#ffffff\" header_4_font=\"Montserrat|700|||||||\" header_4_font_size=\"22px\" header_4_text_color=\"#ffffff\" header_4_line_height=\"1.4em\" max_width=\"640px\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"|||\"]\r\n<h4>Send Us an Email</h4>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.02)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" module_alignment=\"center\" custom_margin=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Tittle\" field_title=\"Project Tittle\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Address\" title=\"Email\" _builder_version=\"3.0.93\" header_font=\"Ubuntu||||||||\" header_font_size=\"16px\" header_text_color=\"rgba(255,255,255,0.7)\" header_line_height=\"1.9em\" body_font=\"Ubuntu|700|||||||\" body_font_size=\"22px\" body_text_color=\"#ffffff\" body_line_height=\"1.5em\"] email@domain.com [/et_pb_blurb][et_pb_blurb admin_label=\"Address\" title=\"Phone\" _builder_version=\"3.0.93\" header_font=\"Ubuntu||||||||\" header_font_size=\"16px\" header_text_color=\"rgba(255,255,255,0.7)\" header_line_height=\"1.9em\" body_font=\"Ubuntu|700|||||||\" body_font_size=\"22px\" body_text_color=\"#ffffff\" body_line_height=\"1.5em\"] +(123) 443-769-456 [/et_pb_blurb][et_pb_blurb admin_label=\"Address\" title=\"Address\" _builder_version=\"3.0.93\" header_font=\"Ubuntu||||||||\" header_font_size=\"16px\" header_text_color=\"rgba(255,255,255,0.7)\" header_line_height=\"1.9em\" body_font=\"Ubuntu|700|||||||\" body_font_size=\"22px\" body_text_color=\"#ffffff\" body_line_height=\"1.5em\"]\r\n\r\nODIO Studios,\r\n<span style=\"font-size: 22px;\">PO Box 4535\r\n</span><span style=\"font-size: 22px;\">San Francisco, CA</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Map\" custom_padding=\"||0px|\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_map address=\"San Francisco, CA, USA\" zoom_level=\"11\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" _builder_version=\"3.0.93\"][et_pb_map_pin pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.0.93\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-30 14:32:08", "2018-01-30 14:32:08", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206767", "1", "2018-03-23 08:44:22", "2018-03-23 08:44:22", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" template_type=\"section\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section]", "Home Main Slider", "", "publish", "closed", "closed", "", "home-main-slider", "", "", "2018-03-23 08:44:22", "2018-03-23 08:44:22", "", "0", "http://panbilresidence.com/et_pb_layout/home-main-slider/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205435", "1", "2018-01-30 14:39:50", "2018-01-30 14:39:50", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.77\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" use_border_color=\"on\" border_color=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.77\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" _builder_version=\"3.0.77\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n333 California, St.\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nSan Francisco, CA\r\n\r\nTel: (123) 958-6430\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-30 14:39:50", "2018-01-30 14:39:50", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206157", "1", "2018-03-03 10:25:25", "2018-03-03 10:25:25", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" use_border_color=\"on\" border_width=\"0px\" box_shadow_color=\"rgba(0,0,0,0.3)\" box_shadow_style=\"none\"]\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" custom_padding_tablet=\"0px||0px|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-03 10:25:25", "2018-03-03 10:25:25", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205437", "1", "2018-01-30 14:42:45", "2018-01-30 14:42:45", "[et_pb_section bb_built=\"1\" admin_label=\"Hero Section\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#ffffff\" background_color_gradient_overlays_image=\"on\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-background-03.jpg\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\"][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title and subhead\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"Montserrat|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>Our Services</h1>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Services\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\"][et_pb_row admin_label=\"Services\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Service\" title=\"Branding\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-1.png\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#1fb6ea\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" animation=\"off\"] In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Service\" title=\"SEO\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-2.png\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\"#3644AF\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" animation=\"off\"] In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Service\" title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/icon-service-3.png\" background_layout=\"dark\" _builder_version=\"3.0.93\" header_font=\"Montserrat|600|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_text_color=\"rgba(255,255,255,0.7)\" body_line_height=\"1.8em\" background_color=\" #2A3443\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"60px|30px|60px|40px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" animation=\"off\"] In hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique. Nam vel iaculis mauris. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Things We Do Best\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]\r\n<h2>What We Do Best</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Core Skill\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Skill\" title=\"Branding\" use_icon=\"on\" font_icon=\"%%157%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Skill\" title=\"Web Design\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Skill\" title=\"Search Engine Optimization\" use_icon=\"on\" font_icon=\"%%158%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Core Skill\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Skill\" title=\"Content Strategy\" use_icon=\"on\" font_icon=\"%%71%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Skill\" title=\"Information Architecture\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Skill\" title=\"Business Consulting\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#2A3443\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|500|||||||\" header_font_size=\"16px\" header_text_color=\"#2A3443\" header_line_height=\"1.4em\" body_font=\"Ubuntu||||||||\" body_font_size=\"16px\" body_text_color=\"rgba(42,52,67,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Feature - Image Right\" background_color=\"#f3f5f9\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#ffffff\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]\r\n<h2>Work with a Team of Talented Design Ninjas</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit. Sed ullamcorper tellus erat, non ultrices sem tincidunt euismod. Fusce rhoncus porttitor velit, eu bibendum nibh aliquet vel.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/web-design-01.jpg\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.93\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fun Facts\" background_color=\"#2a3443\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title and subhead\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\"]\r\n<h2>Fun Facts</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Numbers\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Happy Clients\" number=\"65\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#4046B9\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Completed Projects\" number=\"165\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#1FB6E9\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Office Locations\" number=\"3\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#EB514E\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Team Members\" number=\"42\" percent_sign=\"off\" _builder_version=\"3.0.93\" title_font=\"Ubuntu|500|||||||\" title_font_size=\"16px\" title_text_color=\"rgba(255,255,255,0.7)\" number_font=\"Montserrat|700|||||||\" number_font_size=\"30px\" number_text_color=\"#ffffff\" number_line_height=\"4em\" background_color=\"#354154\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"30px|30px|70px|30px\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Recent Work\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background-3.jpg\" custom_padding=\"18%||18%|\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.93\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title and subhead\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" locked=\"off\"]\r\n<h2>Our Latest Projects</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Work\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#EB514E\" button_border_width=\"0px\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#2a3443\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testimonials\" background_color=\"#f3f5f9\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Tittle Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" locked=\"off\"]\r\n<h2>What We Do Best</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_3\"][et_pb_testimonial author=\"Jake Donavan\" job_title=\"Designer\" company_name=\"Elegant Themes\" portrait_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/portraits-circle-small_2.png\" quote_icon=\"off\" background_color=\"#ffffff\" background_layout=\"light\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"|||\" custom_padding=\"50px||50px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial author=\"Jessica Nichols\" job_title=\"CEO\" company_name=\"Turn Studios\" portrait_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/portraits-circle-small_1.png\" quote_icon=\"off\" background_color=\"#ffffff\" background_layout=\"light\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"|||\" custom_padding=\"50px||50px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial author=\"Rozaro Federar\" job_title=\"Head Chef\" company_name=\"Divi Restaurant\" portrait_url=\"http://panbilresidence.com/wp-content/uploads/2018/01/portraits-circle-small_6.png\" quote_icon=\"off\" background_color=\"#ffffff\" background_layout=\"light\" _builder_version=\"3.0.93\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_margin=\"|||\" custom_padding=\"50px||50px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Work Process Section\" background_color=\"#2a3443\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Texts And Button\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Title and subhead\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_color=\"#ffffff\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"left\"]\r\n<h2>Our Trademarked\r\nProcess &amp; Workflow.</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Title and subhead\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_text_color=\"rgba(255,255,255,0.7)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_color=\"#ffffff\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"40px\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" module_alignment=\"left\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"left\" background_layout=\"dark\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_padding=\"14px|28px|14px|28px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"0px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_text_color_hover=\"#3644af\" button_bg_color_hover=\"#ffffff\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Work Process\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Step\" title=\"Project Research\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-2.png\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Step\" title=\"Wireframes\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-1.png\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"20%\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Step\" title=\"Design\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-3.png\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Step\" title=\"Development\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/process-icon-4.png\" _builder_version=\"3.0.93\" header_level=\"h6\" header_font=\"Ubuntu|600|||||||\" header_text_align=\"center\" header_font_size=\"16px\" header_text_color=\"#ffffff\" header_line_height=\"1.7em\" body_font=\"Ubuntu||||||||\" body_text_align=\"center\" body_text_color=\"rgba(255,255,255,0.5)\" body_line_height=\"1.8em\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\" animation_intensity_slide=\"20%\" animation=\"off\"]\r\n\r\nIn hac habitasse platea dictumst. Vivamus adipiscing.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/section-background.jpg\" custom_padding=\"0px|0px|0px|0px\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"80px\" box_shadow_color=\"#2a3443\"][et_pb_row admin_label=\"Contact Row\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" background_color_2=\"#3644AF\" padding_top_1=\"140px\" padding_right_1=\"10%\" padding_bottom_1=\"60px\" padding_left_1=\"10%\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Ubuntu||||||||\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700|||||||\" header_2_font_size=\"50px\" header_2_line_height=\"1.4em\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" locked=\"off\"]\r\n<h2>Let\'s Work Together</h2>\r\nIn hac habitasse platea dictumst. Vivamus adipiscing fermentum quam volutpat aliquam. Integer et elit eget elit facilisis tristique.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(255,255,255,0.05)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.93\" form_field_font=\"Ubuntu|500|||||||\" form_field_font_size=\"14px\" form_field_text_color=\"#ffffff\" border_radii=\"on|5px|5px|5px|5px\" text_orientation=\"left\" max_width=\"80%\" module_alignment=\"center\" custom_margin=\"150px|40px|100px|40px\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#1fb6e9\" button_border_width=\"10px\" button_border_color=\"#1fb6e9\" button_border_radius=\"5px\" button_letter_spacing=\"2px\" button_font=\"Ubuntu|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"5px\" button_letter_spacing_hover=\"2px\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Title\" field_title=\"Project Title\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.93\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Details\" field_title=\"Project Details\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-30 14:42:45", "2018-01-30 14:42:45", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205547", "1", "2018-02-18 19:33:40", "2018-02-18 19:33:40", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n\nHours of Operation<br />\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span><br />\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span><br />\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span><br />\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\nDialogue is an essential part of any script<br />\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-02-18 19:33:40", "2018-02-18 19:33:40", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205465", "1", "2018-01-30 18:12:13", "2018-01-30 18:12:13", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" template_type=\"section\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-01-30 18:12:13", "2018-01-30 18:12:13", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205441", "1", "2018-01-30 14:50:05", "2018-01-30 14:50:05", "", "Rectangle-5-bitmap", "", "inherit", "open", "closed", "", "rectangle-5-bitmap", "", "", "2018-01-30 14:50:05", "2018-01-30 14:50:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205442", "1", "2018-01-30 14:50:06", "2018-01-30 14:50:06", "", "property1", "", "inherit", "open", "closed", "", "property1", "", "", "2018-01-30 14:50:06", "2018-01-30 14:50:06", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205443", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "property2", "", "inherit", "open", "closed", "", "property2", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205444", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "property3", "", "inherit", "open", "closed", "", "property3", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205445", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "map-point", "", "inherit", "open", "closed", "", "map-point", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205446", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "buildings", "", "inherit", "open", "closed", "", "buildings", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205447", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "buildings-1", "", "inherit", "open", "closed", "", "buildings-1", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205448", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "transport", "", "inherit", "open", "closed", "", "transport", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/transport.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205449", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "money-bills", "", "inherit", "open", "closed", "", "money-bills", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205450", "1", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "Group-4", "", "inherit", "open", "closed", "", "group-4", "", "", "2018-01-30 14:50:07", "2018-01-30 14:50:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/Group-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("524", "1", "2017-03-28 08:35:46", "2017-03-28 08:35:46", "<p>[et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/OC1P5P0.jpg\" custom_padding=\"8%||8%|\" padding_mobile=\"off\" disabled_on=\"on|on|off\" module_id=\"Intro\"][et_pb_row admin_label=\"row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" padding_mobile=\"off\" column_padding_mobile=\"on\" custom_css_main_element=\"width:88%;\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"right\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_font_size_phone=\"45px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"23px\" text_letter_spacing_phone=\"15px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\"] REALTOR [/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"right\" text_font=\"Droid Serif||||\" text_font_size=\"26px\" text_line_height=\"1em\" custom_margin=\"-5%||0px|\" custom_padding=\"|11%||\"] An Independent Realtor [/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Montserrat||||\" text_font_size=\"82px\" text_font_size_tablet=\"50px\" text_font_size_phone=\"40px\" text_line_height=\"1em\" custom_margin=\"||0px|\" custom_padding=\"||15px|37%\" custom_padding_phone=\"|||0px\"] Munir Kamal [/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"Read About Me\" button_alignment=\"right\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-right:10%;\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/hero_small_devices.jpg\" background_color=\"#ffffff\" custom_padding=\"|||\" custom_padding_tablet=\"20%||20%|\" custom_padding_phone=\"25%||25%|\" padding_mobile=\"on\" disabled_on=\"off|off|on\" custom_css_before=\"position: absolute; content: %22 %22; top: 0%; left: 0%; width: 100%; height: 100%; background-color: rgba(255,255,255,0.5) !important;\" custom_css_main_element=\"background-position: top center;\"][et_pb_row admin_label=\"row\" padding_mobile=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"40px\" text_line_height=\"1em\"] Munir Kamal [/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Droid Serif||||\" text_font_size=\"22px\"] An Independent Realtor [/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"Read About Me\" button_alignment=\"center\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-right:10%;\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px|||\" module_id=\"About\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"on\" custom_padding_last_edited=\"on|tablet\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding_tablet=\"0px||0px|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" custom_padding=\"0px|||\" custom_padding_tablet=\"30px|||\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|phone\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" disabled_on=\"on|off|off\" module_class=\"About-headline\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"20px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\"] ABOUT [/et_pb_text][et_pb_text admin_label=\"Text\" disabled_on=\"off|off|off\" header_line_height=\"1.2em\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_line_height=\"1em\" background_layout=\"light\" text_orientation=\"left\" text_font_size_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Making Property Dealing Easy &amp; Happier</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" text_font=\"Droid Serif||||\" text_font_size=\"16px\"]</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Etiam vitae tortor. Phasellus gravida semper nisi. Nam pretium turpis et arcu. Nullam dictum felis eu pede mollis pretium. Fusce vulputate eleifend sapien.</p><p>Praesent egestas tristique nibh. Fusce neque. Proin magna. Aliquam erat volutpat. Phasellus tempus.</p><p>Etiam ut purus mattis mauris sodales aliquam. Nunc nec neque. Fusce egestas elit eget lorem. Vivamus elementum semper nisi. Curabitur at lacus ac velit ornare lobortis.</p><p>[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"View Properties\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Group-3.jpg\" custom_margin=\"25%|||\" custom_margin_tablet=\"0px|||\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_last_edited=\"on|phone\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" custom_padding=\"||0px|\" custom_padding_tablet=\"||0px|\" custom_padding_phone=\"||0px|\" padding_mobile=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"||0px|\" custom_padding_tablet=\"0px||0px|\" column_padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_layout=\"light\" text_font_size_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Expert Guidence</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" max_width=\"630px\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" text_line_height=\"1.5em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"Contact Me\" button_alignment=\"center\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#363244\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" background_color=\"#7EBEC5\" /][et_pb_tabs admin_label=\"Tabs\" active_tab_background_color=\"rgba(255,255,255,0)\" inactive_tab_background_color=\"rgba(255,255,255,0)\" module_id=\"realtor-tab\" module_class=\"Realtor-tab\" tab_font=\"Montserrat|on|||\" tab_font_size=\"22px\" tab_text_color=\"#ffffff\" body_font=\"Droid Serif||||\" body_font_size=\"16px\" body_text_color=\"#ffffff\" background_color=\"rgba(0,0,0,0)\" custom_css_main_element=\"border:none;||margin-bottom: 0!important;\" custom_css_tabs_controls=\"background:transparent; ||\" custom_css_tab=\"border-right:none; ||\" custom_css_active_tab=\"padding-bottom:10px; border-bottom:2px solid #ffffff; \" custom_css_tabs_content=\"text-align:center; ||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Buy\"]</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>[/et_pb_tab][et_pb_tab title=\"Sell\"]</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>[/et_pb_tab][et_pb_tab title=\"Rent\"]</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.</p><p>[/et_pb_tab] [/et_pb_tabs][et_pb_text admin_label=\"Text\" text_orientation=\"center\" module_class=\"service-headline\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_font_size_phone=\"45px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"37px\" text_letter_spacing_phone=\"20px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\" background_layout=\"light\" disabled=\"off\" disabled_on=\"on|on|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>SERVICES</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"||0px|\" padding_mobile=\"off\" module_id=\"Properties\"][et_pb_row admin_label=\"row\" column_padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_line_height=\"1em\" background_layout=\"light\" text_font_size_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Available Properties</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"710px\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.5em\"] Etiam sollicitudin, ipsum eu pulvinar rutrum, tellus ipsum laoreet sapien, quis venenatis ante odio sit amet eros. Suspendisse non nisl sit amet velit hendrerit rutrum. Sed lectus. Nullam nulla eros, ultricies sit amet, nonummy id, imperdiet feugiat, pede. Cras id dui. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" specialty=\"on\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_slider admin_label=\"Slider\" top_padding=\"100%\" bottom_padding=\"100%\" custom_css_slide_description=\"min-height: 550px;\"] [et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg\"][/et_pb_slide] [/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"row_inner\" padding_mobile=\"off\" column_padding_mobile=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"For Sale\" custom_button=\"on\" button_text_size=\"16px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#2c3258\" button_border_radius_hover=\"6px\" button_text_size_last_edited=\"on|phone\" background_color=\"#7EBEC5\" /][et_pb_text admin_label=\"Text\" module_class=\"property-title\" text_font=\"Montserrat|on|||\" text_font_size=\"32px\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"28px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Propert Title Here</p><p>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"220 Kassulke Union Suite 353\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"16px\" header_text_color=\"#363244\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"2 Bath\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"3 Bed\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"1 Garage\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/transport.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"16px||24px|\" saved_tabs=\"all\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.6em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"$100,000 - $120,000 ( per year )\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"property-amount\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" header_font_size_phone=\"20px\" /][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"Arrange Viewing\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0;\" background_color=\"#7EBEC5\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" specialty=\"on\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_slider admin_label=\"Slider\" top_padding=\"70%\" bottom_padding=\"70%\" custom_css_slide_description=\"min-height:550px;\"] [et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg\"][/et_pb_slide] [/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"row_inner\" padding_mobile=\"off\" column_padding_mobile=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"For Sale\" custom_button=\"on\" button_text_size=\"16px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#2c3258\" button_border_radius_hover=\"6px\" button_text_size_last_edited=\"on|phone\" background_color=\"#7EBEC5\" /][et_pb_text admin_label=\"Text\" module_class=\"property-title\" text_font=\"Montserrat|on|||\" text_font_size=\"32px\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"28px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Propert Title Here</p><p>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"220 Kassulke Union Suite 353\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"16px\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"2 Bath\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"3 Bed\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"1 Garage\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/transport.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"16px||24px|\" saved_tabs=\"all\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.6em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"$100,000 - $120,000 ( per year )\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"property-amount\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" header_font_size_phone=\"21px\" /][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"Arrange Viewing\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0;\" background_color=\"#7EBEC5\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" specialty=\"on\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_slider admin_label=\"Slider\" top_padding=\"70%\" bottom_padding=\"70%\" custom_css_slide_description=\"min-height:550px;\"] [et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg\"][/et_pb_slide] [/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"row_inner\" custom_padding=\"||0px|\" custom_padding_tablet=\"||0px|\" padding_mobile=\"off\" column_padding_mobile=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"For Sale\" custom_button=\"on\" button_text_size=\"16px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#2c3258\" button_border_radius_hover=\"6px\" background_color=\"#7EBEC5\" /][et_pb_text admin_label=\"Text\" module_class=\"property-title\" text_font=\"Montserrat|on|||\" text_font_size=\"32px\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"28px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Propert Title Here</p><p>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"220 Kassulke Union Suite 353\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"16px\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"2 Bath\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"3 Bed\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb admin_label=\"Blurb\" title=\"1 Garage\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/transport.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"16px||24px|\" saved_tabs=\"all\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.6em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"$100,000 - $120,000 ( per year )\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"property-amount\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" header_font_size_phone=\"20px\" /][et_pb_button admin_label=\"Button\" button_url=\"#\" button_text=\"Arrange Viewing\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0;\" background_color=\"#7EBEC5\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Group-4.jpg\" custom_padding=\"0px||0px|\" padding_mobile=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"on\" disabled=\"off\" disabled_on=\"on|on|\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" disabled_on=\"on|off|off\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_font_size_phone=\"45px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"27px\" text_letter_spacing_phone=\"15px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\"] FEATURED [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"|0px||\" padding_mobile=\"off\" module_id=\"Contact\" custom_css_main_element=\"border-bottom:1px solid #363244;\"][et_pb_row admin_label=\"row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"0\" custom_padding=\"|||\" padding_mobile=\"off\" make_equal=\"on\" column_padding_mobile=\"on\" padding_top_2=\"20px\" padding_left_2=\"50px\" padding_2_tablet=\"|||25%\" padding_2_phone=\"|||20%\" padding_2_last_edited=\"on|phone\" custom_css_main_element=\"width:82%;\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/OC1OTU0-1.jpg\" align=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" module_class=\"Contact-headline\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_line_height=\"1em\" custom_margin=\"||50px|\" custom_padding_tablet=\"10%|||\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"32px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Contact Me Now</p><p>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"451-531-1131\" url=\"#\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb admin_label=\"Blurb\" title=\"munir.kamal\" url=\"skype:munir.kamal?call\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb admin_label=\"Blurb\" title=\"munir.kamal@gmail.com\" url=\"mailto:munir.kamal@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"Contact-Email\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb admin_label=\"Blurb\" title=\"/munir.kamal\" url=\"https://www.facebook.com/munir.kamal\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb admin_label=\"Blurb\" title=\"/m_munirkamal\" url=\"https://twitter.com/m_munirkamal\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" padding_mobile=\"off\" column_padding_mobile=\"on\" padding_bottom_1=\"30px\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Signature-2.png\" sticky=\"on\" align=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" disabled_on=\"off|off|off\" module_id=\"download_section\" custom_css_main_element=\"border: 2px dotted #363244;\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"on\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"||0px|\" column_padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" custom_css_main_1=\"margin-bottom: 0px;||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_text_color=\"#2c3258\" text_line_height=\"1em\" background_layout=\"light\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]</p><p>View Other Products</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_text_color=\"#666666\" text_line_height=\"1em\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]<br /> We have more awesome freebies &amp; Premium products available. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" padding_bottom_2=\"0px\" make_fullwidth=\"off\" custom_padding_tablet=\"||0px|\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"cakewp.com\" url_new_window=\"on\" button_text=\"More Products\" button_alignment=\"center\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#ffffff\" button_bg_color=\"#2c3258\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"rgba(44,50,88,0.8)\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0 !important;\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" custom_padding=\"0px|0px|27px|0px\" padding_mobile=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Open Sans||||\" text_text_color=\"#666666\"]</p><p>This Section is not part of the layout!</p><p>[/et_pb_text][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" custom_css_main_element=\"max-width: 120px !important; margin: 0 auto !important;\"] [et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/munir.kamal\" bg_color=\"#2c3258\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/m_munirkamal\" bg_color=\"#2c3258\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"mailto:munir.kamal@gmail.com\" bg_color=\"#2c3258\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"]google-plus[/et_pb_social_media_follow_network] [/et_pb_social_media_follow][et_pb_text admin_label=\"Text\" text_orientation=\"center\" text_font=\"Droid Serif||||\" text_font_size=\"18px\"] Connect with me [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Reator_Divi_Layout_By_Munirkamal", "", "publish", "closed", "closed", "", "reator_divi_layout_by_munirkamal", "", "", "2017-03-28 08:35:46", "2017-03-28 08:35:46", "", "0", "http://panbilresidence.com/et_pb_layout/reator_divi_layout_by_munirkamal/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205453", "1", "2018-01-30 15:08:16", "2018-01-30 15:08:16", "[et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/OC1P5P0.jpg\" custom_padding=\"8%||8%|\" padding_mobile=\"off\" disabled_on=\"on|on|off\" module_id=\"Intro\"][et_pb_row admin_label=\"row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" padding_mobile=\"off\" column_padding_mobile=\"on\" custom_css_main_element=\"width:88%;\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"right\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_font_size_phone=\"45px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"23px\" text_letter_spacing_phone=\"15px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\"] REALTOR [/et_pb_text][et_pb_text text_orientation=\"right\" text_font=\"Droid Serif||||\" text_font_size=\"26px\" text_line_height=\"1em\" custom_margin=\"-5%||0px|\" custom_padding=\"|11%||\"] An Independent Realtor [/et_pb_text][et_pb_text text_orientation=\"center\" text_font=\"Montserrat||||\" text_font_size=\"82px\" text_font_size_tablet=\"50px\" text_font_size_phone=\"40px\" text_line_height=\"1em\" custom_margin=\"||0px|\" custom_padding=\"||15px|37%\" custom_padding_phone=\"|||0px\"] Munir Kamal [/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Read About Me\" button_alignment=\"right\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-right:10%;\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/hero_small_devices.jpg\" background_color=\"#ffffff\" custom_padding=\"|||\" custom_padding_tablet=\"20%||20%|\" custom_padding_phone=\"25%||25%|\" padding_mobile=\"on\" disabled_on=\"off|off|on\" custom_css_before=\"position: absolute; content: %22 %22; top: 0%; left: 0%; width: 100%; height: 100%; background-color: rgba(255,255,255,0.5) !important;\" custom_css_main_element=\"background-position: top center;\"][et_pb_row admin_label=\"row\" padding_mobile=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"40px\" text_line_height=\"1em\"] Munir Kamal [/et_pb_text][et_pb_text text_orientation=\"center\" text_font=\"Droid Serif||||\" text_font_size=\"22px\"] An Independent Realtor [/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Read About Me\" button_alignment=\"center\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-right:10%;\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px|||\" module_id=\"About\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"on\" custom_padding_last_edited=\"on|tablet\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding_tablet=\"0px||0px|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" custom_padding=\"0px|||\" custom_padding_tablet=\"30px|||\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|phone\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text disabled_on=\"on|off|off\" module_class=\"About-headline\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"20px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\"] ABOUT [/et_pb_text][et_pb_text disabled_on=\"off|off|off\" header_line_height=\"1.2em\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_line_height=\"1em\" background_layout=\"light\" text_orientation=\"left\" text_font_size_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMaking Property Dealing Easy &amp; Happier\r\n\r\n[/et_pb_text][et_pb_text text_font=\"Droid Serif||||\" text_font_size=\"16px\"]\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nEtiam vitae tortor. Phasellus gravida semper nisi. Nam pretium turpis et arcu. Nullam dictum felis eu pede mollis pretium. Fusce vulputate eleifend sapien.\r\n\r\nPraesent egestas tristique nibh. Fusce neque. Proin magna. Aliquam erat volutpat. Phasellus tempus.\r\n\r\nEtiam ut purus mattis mauris sodales aliquam. Nunc nec neque. Fusce egestas elit eget lorem. Vivamus elementum semper nisi. Curabitur at lacus ac velit ornare lobortis.\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"View Properties\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Group-3.jpg\" custom_margin=\"25%|||\" custom_margin_tablet=\"0px|||\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_last_edited=\"on|phone\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" custom_padding=\"||0px|\" custom_padding_tablet=\"||0px|\" custom_padding_phone=\"||0px|\" padding_mobile=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"||0px|\" custom_padding_tablet=\"0px||0px|\" column_padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_layout=\"light\" text_font_size_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nExpert Guidence\r\n\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"630px\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" text_line_height=\"1.5em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Contact Me\" button_alignment=\"center\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#363244\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" background_color=\"#7EBEC5\" /][et_pb_tabs active_tab_background_color=\"rgba(255,255,255,0)\" inactive_tab_background_color=\"rgba(255,255,255,0)\" module_id=\"realtor-tab\" module_class=\"Realtor-tab\" tab_font=\"Montserrat|on|||\" tab_font_size=\"22px\" tab_text_color=\"#ffffff\" body_font=\"Droid Serif||||\" body_font_size=\"16px\" body_text_color=\"#ffffff\" background_color=\"rgba(0,0,0,0)\" custom_css_main_element=\"border:none;||margin-bottom: 0!important;\" custom_css_tabs_controls=\"background:transparent; ||\" custom_css_tab=\"border-right:none; ||\" custom_css_active_tab=\"padding-bottom:10px; border-bottom:2px solid #ffffff; \" custom_css_tabs_content=\"text-align:center; ||\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"][et_pb_tab title=\"Buy\"]\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Sell\"]\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Rent\"]\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\nVestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.\r\n\r\n[/et_pb_tab][/et_pb_tabs][et_pb_text text_orientation=\"center\" module_class=\"service-headline\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_font_size_phone=\"45px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"37px\" text_letter_spacing_phone=\"20px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\" background_layout=\"light\" disabled=\"off\" disabled_on=\"on|on|\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSERVICES\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"||0px|\" padding_mobile=\"off\" module_id=\"Properties\"][et_pb_row admin_label=\"row\" column_padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_line_height=\"1em\" background_layout=\"light\" text_font_size_last_edited=\"on|tablet\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAvailable Properties\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"710px\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.5em\"] Etiam sollicitudin, ipsum eu pulvinar rutrum, tellus ipsum laoreet sapien, quis venenatis ante odio sit amet eros. Suspendisse non nisl sit amet velit hendrerit rutrum. Sed lectus. Nullam nulla eros, ultricies sit amet, nonummy id, imperdiet feugiat, pede. Cras id dui. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" specialty=\"on\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_slider top_padding=\"100%\" bottom_padding=\"100%\" custom_css_slide_description=\"min-height: 550px;\"][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner padding_mobile=\"off\" column_padding_mobile=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_button button_url=\"#\" button_text=\"For Sale\" custom_button=\"on\" button_text_size=\"16px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#2c3258\" button_border_radius_hover=\"6px\" button_text_size_last_edited=\"on|phone\" background_color=\"#7EBEC5\" /][et_pb_text module_class=\"property-title\" text_font=\"Montserrat|on|||\" text_font_size=\"32px\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"28px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPropert Title Here\r\n\r\n[/et_pb_text][et_pb_blurb title=\"220 Kassulke Union Suite 353\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"16px\" header_text_color=\"#363244\" saved_tabs=\"all\" /][et_pb_blurb title=\"2 Bath\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb title=\"3 Bed\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb title=\"1 Garage\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/transport.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"16px||24px|\" saved_tabs=\"all\" /][et_pb_text background_layout=\"dark\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.6em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_blurb title=\"$100,000 - $120,000 ( per year )\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"property-amount\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" header_font_size_phone=\"20px\" /][et_pb_button button_url=\"#\" button_text=\"Arrange Viewing\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0;\" background_color=\"#7EBEC5\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" specialty=\"on\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_slider top_padding=\"70%\" bottom_padding=\"70%\" custom_css_slide_description=\"min-height:550px;\"][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner padding_mobile=\"off\" column_padding_mobile=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_button button_url=\"#\" button_text=\"For Sale\" custom_button=\"on\" button_text_size=\"16px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#2c3258\" button_border_radius_hover=\"6px\" button_text_size_last_edited=\"on|phone\" background_color=\"#7EBEC5\" /][et_pb_text module_class=\"property-title\" text_font=\"Montserrat|on|||\" text_font_size=\"32px\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"28px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPropert Title Here\r\n\r\n[/et_pb_text][et_pb_blurb title=\"220 Kassulke Union Suite 353\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"16px\" saved_tabs=\"all\" /][et_pb_blurb title=\"2 Bath\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb title=\"3 Bed\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb title=\"1 Garage\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/transport.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"16px||24px|\" saved_tabs=\"all\" /][et_pb_text background_layout=\"dark\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.6em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_blurb title=\"$100,000 - $120,000 ( per year )\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"property-amount\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" header_font_size_phone=\"21px\" /][et_pb_button button_url=\"#\" button_text=\"Arrange Viewing\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0;\" background_color=\"#7EBEC5\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"0px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" specialty=\"on\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_slider top_padding=\"70%\" bottom_padding=\"70%\" custom_css_slide_description=\"min-height:550px;\"][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property3.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property1.jpg\"][/et_pb_slide][et_pb_slide background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/property2.jpg\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner custom_padding=\"||0px|\" custom_padding_tablet=\"||0px|\" padding_mobile=\"off\" column_padding_mobile=\"off\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_button button_url=\"#\" button_text=\"For Sale\" custom_button=\"on\" button_text_size=\"16px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#2c3258\" button_border_radius_hover=\"6px\" background_color=\"#7EBEC5\" /][et_pb_text module_class=\"property-title\" text_font=\"Montserrat|on|||\" text_font_size=\"32px\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"28px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPropert Title Here\r\n\r\n[/et_pb_text][et_pb_blurb title=\"220 Kassulke Union Suite 353\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/map-point.png\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"16px\" saved_tabs=\"all\" /][et_pb_blurb title=\"2 Bath\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb title=\"3 Bed\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/buildings-1.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"25px||25px|\" saved_tabs=\"all\" /][et_pb_blurb title=\"1 Garage\" url=\"#\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/transport.png\" text_orientation=\"center\" module_class=\"property-service\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" use_border_color=\"on\" border_color=\"#363244\" custom_margin=\"|||\" custom_padding=\"16px||24px|\" saved_tabs=\"all\" /][et_pb_text background_layout=\"dark\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_line_height=\"1.6em\"] Vestibulum dapibus nunc ac augue. Cras id dui. Sed fringilla mauris sit amet nibh. Pellentesque posuere. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. [/et_pb_text][et_pb_blurb title=\"$100,000 - $120,000 ( per year )\" image=\"http://panbilresidence.com/wp-content/uploads/2018/01/money-bills.png\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"property-amount\" header_font=\"Montserrat|on|||\" header_font_size=\"22px\" header_font_size_phone=\"20px\" /][et_pb_button button_url=\"#\" button_text=\"Arrange Viewing\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#363244\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"on\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0;\" background_color=\"#7EBEC5\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Group-4.jpg\" custom_padding=\"0px||0px|\" padding_mobile=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"on\" disabled=\"off\" disabled_on=\"on|on|\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"||0px|\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"0px||0px|\" padding_mobile=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" disabled_on=\"on|off|off\" text_font=\"Montserrat|on|||\" text_font_size=\"100px\" text_font_size_tablet=\"60px\" text_font_size_phone=\"45px\" text_text_color=\"#dbc6b3\" text_letter_spacing=\"27px\" text_letter_spacing_phone=\"15px\" text_line_height=\"1em\" custom_css_main_element=\"opacity:0.29;\"] FEATURED [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" custom_padding=\"|0px||\" padding_mobile=\"off\" module_id=\"Contact\" custom_css_main_element=\"border-bottom:1px solid #363244;\"][et_pb_row admin_label=\"row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"0\" custom_padding=\"|||\" padding_mobile=\"off\" make_equal=\"on\" column_padding_mobile=\"on\" padding_top_2=\"20px\" padding_left_2=\"50px\" padding_2_tablet=\"|||25%\" padding_2_phone=\"|||20%\" padding_2_last_edited=\"on|phone\" custom_css_main_element=\"width:82%;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/OC1OTU0-1.jpg\" align=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text module_class=\"Contact-headline\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_line_height=\"1em\" custom_margin=\"||50px|\" custom_padding_tablet=\"10%|||\" background_layout=\"light\" text_orientation=\"left\" text_font_size_tablet=\"32px\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nContact Me Now\r\n\r\n[/et_pb_text][et_pb_blurb title=\"451-531-1131\" url=\"#\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb title=\"munir.kamal\" url=\"skype:munir.kamal?call\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb title=\"munir.kamal@gmail.com\" url=\"mailto:munir.kamal@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" module_class=\"Contact-Email\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb title=\"/munir.kamal\" url=\"https://www.facebook.com/munir.kamal\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][et_pb_blurb title=\"/m_munirkamal\" url=\"https://twitter.com/m_munirkamal\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"\" icon_color=\"#363244\" icon_placement=\"left\" text_orientation=\"center\" header_font=\"Droid Serif||||\" header_font_size=\"26px\" custom_margin=\"||15px|\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" padding_mobile=\"off\" column_padding_mobile=\"on\" padding_bottom_1=\"30px\"][et_pb_column type=\"4_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Signature-2.png\" sticky=\"on\" align=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" disabled_on=\"off|off|off\" module_id=\"download_section\" custom_css_main_element=\"border: 2px dotted #363244;\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"on\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"||0px|\" column_padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" custom_css_main_1=\"margin-bottom: 0px;||\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" text_font=\"Montserrat|on|||\" text_font_size=\"42px\" text_font_size_tablet=\"32px\" text_text_color=\"#2c3258\" text_line_height=\"1em\" background_layout=\"light\" text_font_size_last_edited=\"on|phone\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nView Other Products\r\n\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" text_font=\"Droid Serif||||\" text_font_size=\"16px\" text_text_color=\"#666666\" text_line_height=\"1em\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"] We have more awesome freebies &amp; Premium products available. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" padding_bottom_2=\"0px\" make_fullwidth=\"off\" custom_padding_tablet=\"||0px|\" custom_padding_last_edited=\"on|phone\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_button button_url=\"cakewp.com\" url_new_window=\"on\" button_text=\"More Products\" button_alignment=\"center\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#ffffff\" button_bg_color=\"#2c3258\" button_border_width=\"0px\" button_border_radius=\"6px\" button_font=\"Droid Serif||||\" button_use_icon=\"off\" button_bg_color_hover=\"rgba(44,50,88,0.8)\" button_border_radius_hover=\"6px\" custom_css_main_element=\"margin-bottom:0 !important;\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" custom_padding=\"0px|0px|27px|0px\" padding_mobile=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text text_orientation=\"center\" text_font=\"Open Sans||||\" text_text_color=\"#666666\"]\r\n\r\nThis Section is not part of the layout!\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" custom_css_main_element=\"max-width: 120px !important; margin: 0 auto !important;\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/munir.kamal\" bg_color=\"#2c3258\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/m_munirkamal\" bg_color=\"#2c3258\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"mailto:munir.kamal@gmail.com\" bg_color=\"#2c3258\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"]google-plus[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text text_orientation=\"center\" text_font=\"Droid Serif||||\" text_font_size=\"18px\"] Connect with me [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-30 15:08:16", "2018-01-30 15:08:16", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205466", "1", "2018-01-30 18:12:17", "2018-01-30 18:12:17", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\n\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\n\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 18:12:17", "2018-01-30 18:12:17", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205469", "1", "2018-01-30 18:15:52", "2018-01-30 18:15:52", "[et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" template_type=\"module\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text]", "Where it All Begins", "", "publish", "closed", "closed", "", "where-it-all-begins", "", "", "2018-01-30 18:15:52", "2018-01-30 18:15:52", "", "0", "http://panbilresidence.com/et_pb_layout/where-it-all-begins/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205474", "1", "2018-01-30 18:57:30", "2018-01-30 18:57:30", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 18:57:30", "2018-01-30 18:57:30", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205468", "1", "2018-01-30 18:14:17", "2018-01-30 18:14:17", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\n\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\n\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 18:14:17", "2018-01-30 18:14:17", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205456", "1", "2018-01-30 17:58:51", "2018-01-30 17:58:51", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "publish", "closed", "closed", "", "psr-footer", "", "", "2018-03-26 06:04:51", "2018-03-26 06:04:51", "", "0", "http://panbilresidence.com/et_pb_layout/psr-footer/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205491", "1", "2018-01-30 19:26:26", "2018-01-30 19:26:26", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 19:26:26", "2018-01-30 19:26:26", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205458", "1", "2018-01-30 18:01:14", "2018-01-30 18:01:14", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" template_type=\"section\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-01-30 18:01:14", "2018-01-30 18:01:14", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205459", "1", "2018-01-30 18:01:51", "2018-01-30 18:01:51", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9306-2.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#000000\"]<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n\nOur comprehensive services include on-site management, maintenance, and round-the-rock security. Our professional on-site Customer Service Managers are readily available to attend requests and queries of tenants. Additionally, our experienced Maintenance Department liases closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenant\'s satisfaction is our utmost priority.\n\nNestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings.\n\n</div>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|38px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\"><em>a place I call home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 18:01:51", "2018-01-30 18:01:51", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205462", "1", "2018-01-30 18:08:42", "2018-01-30 18:08:42", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\" custom_padding_tablet=\"50px|0|50px|0\" custom_padding_last_edited=\"on|desktop\"][et_pb_fullwidth_header title=\"Only Quality Food\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_width=\"2px\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_width=\"2px\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" custom_padding_tablet=\"20%||20%|\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Welcome To Royal</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Fresh Ingredient, Tasty Meals</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Menu Grid\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" background_position=\"top_left\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\" custom_padding_tablet=\"||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\"][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\n$26.95\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\r\n<h1>Grilled Fillet</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider height=\"200px\" _builder_version=\"3.0.77\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\n$53.3\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\r\n<h1>Chicken Breast</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\r\n\r\nSed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" header_line_height=\"2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\n$40.5\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\" locked=\"off\"]\r\n<h1>King Crab</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\r\n\r\nSed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\" /][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\n$40.5\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\r\n<h1>Sea Trout</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\r\n\r\nSed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\n$22.3\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\r\n<h1>Roasted Bakra</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\r\n\r\nSed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]\r\n\r\n$22.3\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]\r\n<h1>Roasted Bakra</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]\r\n\r\nSed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\" custom_padding_tablet=\"50px|0|50px|0\" custom_padding_last_edited=\"on|desktop\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" border_color_all=\"#363244\" border_width_all=\"0px\" border_style_all=\"solid\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" use_border_color=\"on\" border_width=\"0px\" /][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" border_color_all=\"#363244\" border_width_all=\"0px\" border_style_all=\"solid\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" border_color_all=\"#363244\" border_width_all=\"0px\" border_style_all=\"solid\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" border_color_all=\"#363244\" border_width_all=\"0px\" border_style_all=\"solid\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding_tablet=\"0px||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_row][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-30 18:08:42", "2018-01-30 18:08:42", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205471", "1", "2018-01-30 18:49:40", "2018-01-30 18:49:40", "", "ABOUT US", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2018-01-30 18:49:40", "2018-01-30 18:49:40", "", "57", "http://panbilresidence.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205464", "1", "2018-01-30 18:11:16", "2018-01-30 18:11:16", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Where It All Began</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "ABOUT US", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2018-01-30 18:11:16", "2018-01-30 18:11:16", "", "57", "http://panbilresidence.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205472", "1", "2018-01-30 18:50:25", "2018-01-30 18:50:25", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Where It All Began</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\" saved_tabs=\"all\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "ABOUT US", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2018-01-30 18:50:25", "2018-01-30 18:50:25", "", "57", "http://panbilresidence.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205477", "1", "2018-01-30 19:06:49", "2018-01-30 19:06:49", "", "_MG_9386", "", "inherit", "open", "closed", "", "_mg_9386", "", "", "2018-01-30 19:06:49", "2018-01-30 19:06:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9386.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205487", "1", "2018-01-30 19:21:27", "2018-01-30 19:21:27", "", "table-white-home-interior", "LIVING ROOM", "inherit", "open", "closed", "", "table-white-home-interior", "", "", "2018-02-20 12:25:22", "2018-02-20 12:25:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205478", "1", "2018-01-30 19:09:58", "2018-01-30 19:09:58", "[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\" template_type=\"section\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "What We Offer", "", "publish", "closed", "closed", "", "what-we-offer", "", "", "2018-01-30 19:09:58", "2018-01-30 19:09:58", "", "0", "http://panbilresidence.com/et_pb_layout/what-we-offer/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206706", "1", "2018-03-21 20:43:17", "2018-03-21 20:43:17", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|56px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1><em>A Place I Call Home...</em></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]\r\n\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-21 20:43:17", "2018-03-21 20:43:17", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205485", "1", "2018-01-30 19:18:22", "2018-01-30 19:18:22", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9386.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 19:18:22", "2018-01-30 19:18:22", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205480", "1", "2018-01-30 19:10:52", "2018-01-30 19:10:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9386.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 19:10:52", "2018-01-30 19:10:52", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205482", "1", "2018-01-30 19:15:02", "2018-01-30 19:15:02", "[et_pb_section admin_label=\"section\"]\n		[et_pb_row admin_label=\"row\"]\n			[et_pb_column type=\"4_4\"]\n				[et_pb_text admin_label=\"Text\"]\n					\n				[/et_pb_text]\n			[/et_pb_column]\n		[/et_pb_row]\n	[/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-30 19:15:02", "2018-01-30 19:15:02", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206152", "1", "2018-03-03 10:17:58", "2018-03-03 10:17:58", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-03 10:17:58", "2018-03-03 10:17:58", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206151", "1", "2018-03-03 10:13:38", "2018-03-03 10:13:38", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\n\n<br />\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\n\n<p>THE APARTMENT</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\n\n<br />\n\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\n\n<h1>Why it\'s The Best</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span> </p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\n\n<p>In the Spotlight </p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\n\n<br />\n\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\n\n<h1>Awards &amp; Recognition</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi </p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\n\n<br />\n\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\n\n<br />\n\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\n\n<br />\n\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\n\n<br />\n\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\n\n<p>Features </p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\n\n<br />\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\n\n<h1>What We Offer</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. </p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. </p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. </p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. </p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. </p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\n\n<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. </p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\n\n<p>Hours of Operation </p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span> </p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<br />\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span> </p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<br />\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span> </p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\n\n<br />\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions! </p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\n\n<br />\n\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script </p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\n\n<br />\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-03 10:13:38", "2018-03-03 10:13:38", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205483", "1", "2018-01-30 19:15:37", "2018-01-30 19:15:37", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-09.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Where It All Began</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.77\"][et_pb_column type=\"4_4\"][et_pb_video src=\"https://youtu.be/FkQuawiGWUw\" image_src=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" _builder_version=\"3.0.77\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-30 19:15:37", "2018-01-30 19:15:37", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206054", "1", "2018-03-02 23:06:35", "2018-03-02 23:06:35", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore. [/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"] The Villas [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"] In the Spotlight [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"] Features [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"] Hours of Operation [/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] <strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span> [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] <strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span> [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] <span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span> [/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions! [/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"] Dialogue is an essential part of any script [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-02 23:06:35", "2018-03-02 23:06:35", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206052", "1", "2018-03-02 22:48:53", "2018-03-02 22:48:53", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_shop _builder_version=\"3.0.96\" type=\"recent\" columns_number=\"0\" orderby=\"menu_order\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-02 22:48:53", "2018-03-02 22:48:53", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205484", "1", "2018-01-30 19:16:16", "2018-01-30 19:16:16", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-09.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Where It All Began</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.77\"][et_pb_column type=\"4_4\"][et_pb_video src=\"https://youtu.be/FkQuawiGWUw\" image_src=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" _builder_version=\"3.0.77\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-01-30 19:16:16", "2018-01-30 19:16:16", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205488", "1", "2018-01-30 19:21:35", "2018-01-30 19:21:35", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 19:21:35", "2018-01-30 19:21:35", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205513", "1", "2018-01-30 19:57:17", "2018-01-30 19:57:17", "", "_MG_6619", "LIVING ROOM", "inherit", "open", "closed", "", "_mg_6619", "", "", "2018-02-20 12:25:10", "2018-02-20 12:25:10", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205514", "1", "2018-01-30 20:00:16", "2018-01-30 20:00:16", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.77\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" border_color=\"rgba(0,0,0,0.2)\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.77\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.77\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.77\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.77\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>Jl. Jendral Ahmad Yani, Muka Kuning</p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: (0778) 371333</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-01-30 20:00:16", "2018-01-30 20:00:16", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205495", "1", "2018-01-30 19:30:58", "2018-01-30 19:30:58", "[et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" template_type=\"module\"]<h1>What We Offer</h1>\r[/et_pb_text]", "A Place I Call Home", "", "publish", "closed", "closed", "", "a-place-i-call-home", "", "", "2018-01-30 19:30:58", "2018-01-30 19:30:58", "", "0", "http://panbilresidence.com/et_pb_layout/a-place-i-call-home/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205493", "1", "2018-01-30 19:29:28", "2018-01-30 19:29:28", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"18px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#cecece\" text_line_height=\"0.6em\" text_text_shadow_style=\"preset3\" header_font=\"||||||||\" header_text_color=\"#e09900\"]<h1 style=\"text-align: center;\"><em>A Place I Call Home...</em></h1>\n<h1 style=\"text-align: center;\"><em> </em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 19:29:28", "2018-01-30 19:29:28", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205521", "1", "2018-01-30 20:09:14", "2018-01-30 20:09:14", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 20:09:14", "2018-01-30 20:09:14", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205496", "1", "2018-01-30 19:32:06", "2018-01-30 19:32:06", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"zoom\" animation_duration=\"250ms\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 19:32:06", "2018-01-30 19:32:06", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205508", "1", "2018-01-30 19:49:00", "2018-01-30 19:49:00", "", "_MG_9521", "MATOA", "inherit", "open", "closed", "", "_mg_9521", "", "", "2018-02-20 12:24:33", "2018-02-20 12:24:33", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205500", "1", "2018-01-30 19:37:29", "2018-01-30 19:37:29", "", "_MG_9098", "SWIMMING POOL", "inherit", "open", "closed", "", "_mg_9098", "", "", "2018-02-20 12:25:18", "2018-02-20 12:25:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205501", "1", "2018-01-30 19:39:52", "2018-01-30 19:39:52", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"APARTMENT SERVICES\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>THE APARTMENT</p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-30 19:39:52", "2018-01-30 19:39:52", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205509", "1", "2018-01-30 19:52:16", "2018-01-30 19:52:16", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>The Villas</p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-01-30 19:52:16", "2018-01-30 19:52:16", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205503", "1", "2018-01-30 19:43:15", "2018-01-30 19:43:15", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-09.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Where It All Began</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.77\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://youtu.be/FkQuawiGWUw\" image_src=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" _builder_version=\"3.0.77\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-01-30 19:43:15", "2018-01-30 19:43:15", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205518", "1", "2018-01-30 20:07:22", "2018-01-30 20:07:22", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>THE APARTMENT</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-30 20:07:22", "2018-01-30 20:07:22", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205982", "1", "2018-03-02 07:35:07", "2018-03-02 07:35:07", "", "Type New Kuta (7)", "", "inherit", "open", "closed", "", "type-new-kuta-7", "", "", "2018-03-02 07:35:07", "2018-03-02 07:35:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205981", "1", "2018-03-02 07:35:00", "2018-03-02 07:35:00", "", "Type New Kuta (6)", "", "inherit", "open", "closed", "", "type-new-kuta-6", "", "", "2018-03-02 07:35:00", "2018-03-02 07:35:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205976", "1", "2018-03-02 07:32:03", "2018-03-02 07:32:03", "", "Type New Kuta (1)", "", "inherit", "open", "closed", "", "type-new-kuta-1", "", "", "2018-03-02 07:32:03", "2018-03-02 07:32:03", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205977", "1", "2018-03-02 07:32:09", "2018-03-02 07:32:09", "", "Type New Kuta (2)", "", "inherit", "open", "closed", "", "type-new-kuta-2", "", "", "2018-03-02 07:32:09", "2018-03-02 07:32:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205978", "1", "2018-03-02 07:32:17", "2018-03-02 07:32:17", "", "Type New Kuta (3)", "", "inherit", "open", "closed", "", "type-new-kuta-3", "", "", "2018-03-02 07:32:17", "2018-03-02 07:32:17", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205979", "1", "2018-03-02 07:34:44", "2018-03-02 07:34:44", "", "Type New Kuta (4)", "", "inherit", "open", "closed", "", "type-new-kuta-4", "", "", "2018-03-02 07:34:44", "2018-03-02 07:34:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205980", "1", "2018-03-02 07:34:52", "2018-03-02 07:34:52", "", "Type New Kuta (5)", "", "inherit", "open", "closed", "", "type-new-kuta-5", "", "", "2018-03-02 07:34:52", "2018-03-02 07:34:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205526", "1", "2018-01-30 20:19:09", "2018-01-30 20:19:09", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 20:19:09", "2018-01-30 20:19:09", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205523", "1", "2018-01-30 20:12:05", "2018-01-30 20:12:05", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 20:12:05", "2018-01-30 20:12:05", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205870", "1", "2018-02-21 04:36:13", "2018-02-21 04:36:13", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>THE APARTMENT</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-02-21 04:36:13", "2018-02-21 04:36:13", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205506", "1", "2018-01-30 19:44:45", "2018-01-30 19:44:45", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>THE APARTMENT</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Testominals\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-01-30 19:44:45", "2018-01-30 19:44:45", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205516", "1", "2018-01-30 20:05:11", "2018-01-30 20:05:11", "[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\" template_type=\"section\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "What We Offer Updated", "", "publish", "closed", "closed", "", "what-we-offer-updated", "", "", "2018-01-30 20:05:11", "2018-01-30 20:05:11", "", "0", "http://panbilresidence.com/et_pb_layout/what-we-offer-updated/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205517", "1", "2018-01-30 20:05:26", "2018-01-30 20:05:26", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>The Villas</p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-01-30 20:05:26", "2018-01-30 20:05:26", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205520", "1", "2018-01-30 20:08:37", "2018-01-30 20:08:37", "[et_pb_section fb_built=\"1\" background_color=\"#efefef\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" background_blend=\"overlay\" template_type=\"section\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" align=\"center\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_font_size=\"6px\" text_text_color=\"#050505\" header_font=\"||||||||\" header_font_size=\"29px\" header_2_font=\"Abhaya Libre||||||||\" header_2_text_color=\"#c47f00\"]<h2>PANBIL SERVICE RESIDENCE</h2>\n<p style=\"margin: 0in; margin-bottom: .0001pt; text-align: justify;\"><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">Established in 2011, PT. Panbil Service Residence is the leader in offering </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">professional properly management in Batam, Indonesia. With a portfolio of </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">over 40 companies. which ranges from international companies to government </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">representatives. Panbil Service Residence is competent in providing services that are tailored to </span><span style=\"font-size: 11.0pt; font-family: \'Calibri\',sans-serif;\">our client’s specific needs. Some of our clients include Citra Tubindo Engineering, PT. Schneider, Conoco Phillips, Heat Exchangers, PT. Samudera Oceaneering, P.T. Anggrek Hitam, McConnell Dowell and Epcos. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "PANBIL SERVICE RESIDENCE HOME", "", "publish", "closed", "closed", "", "panbil-service-residence-home", "", "", "2018-01-30 20:08:37", "2018-01-30 20:08:37", "", "0", "http://panbilresidence.com/et_pb_layout/panbil-service-residence-home/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205989", "1", "2018-03-02 07:36:06", "2018-03-02 07:36:06", "", "Type New Kuta (14)", "", "inherit", "open", "closed", "", "type-new-kuta-14", "", "", "2018-03-02 07:36:06", "2018-03-02 07:36:06", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205988", "1", "2018-03-02 07:35:59", "2018-03-02 07:35:59", "", "Type New Kuta (13)", "", "inherit", "open", "closed", "", "type-new-kuta-13", "", "", "2018-03-02 07:35:59", "2018-03-02 07:35:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205987", "1", "2018-03-02 07:35:52", "2018-03-02 07:35:52", "", "Type New Kuta (12)", "", "inherit", "open", "closed", "", "type-new-kuta-12", "", "", "2018-03-02 07:35:52", "2018-03-02 07:35:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205986", "1", "2018-03-02 07:35:44", "2018-03-02 07:35:44", "", "Type New Kuta (11)", "", "inherit", "open", "closed", "", "type-new-kuta-11", "", "", "2018-03-02 07:35:44", "2018-03-02 07:35:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205985", "1", "2018-03-02 07:35:37", "2018-03-02 07:35:37", "", "Type New Kuta (10)", "", "inherit", "open", "closed", "", "type-new-kuta-10", "", "", "2018-03-02 07:35:37", "2018-03-02 07:35:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205984", "1", "2018-03-02 07:35:28", "2018-03-02 07:35:28", "", "Type New Kuta (9)", "", "inherit", "open", "closed", "", "type-new-kuta-9", "", "", "2018-03-02 07:35:28", "2018-03-02 07:35:28", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205983", "1", "2018-03-02 07:35:19", "2018-03-02 07:35:19", "", "Type New Kuta (8)", "", "inherit", "open", "closed", "", "type-new-kuta-8", "", "", "2018-03-02 07:35:19", "2018-03-02 07:35:19", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205570", "1", "2018-02-20 21:06:50", "2018-02-20 21:06:50", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_width=\"2px\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_width=\"2px\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Welcome To Royal\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Welcome To Panbil Service Residence</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Only the Best\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Fully Furnished, Wonderfully Living</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Our News & Events\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Don\'t Miss\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>Our News And Events</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" use_border_color=\"on\" border_width=\"0px\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" custom_padding_tablet=\"0px||0px|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-02-20 21:06:50", "2018-02-20 21:06:50", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205542", "1", "2018-01-31 07:39:21", "2018-01-31 07:39:21", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_width=\"2px\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_width=\"2px\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Welcome To Royal\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Welcome To Panbil Service Residence</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Only the Best\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Fresh Ingredient, Tasty Meals</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Menu Grid\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_position=\"top_left\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\" custom_padding_tablet=\"||0px|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$26.95\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Grilled Fillet</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"200px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$53.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Chicken Breast</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" header_line_height=\"2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$40.5\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\" locked=\"off\"]<h1>King Crab</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$40.5\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Sea Trout</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$22.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Roasted Bakra</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$22.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Roasted Bakra</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Our News & Events\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Don\'t Miss\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>Our News And Events</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" use_border_color=\"on\" border_width=\"0px\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" custom_padding_tablet=\"0px||0px|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-31 07:39:21", "2018-01-31 07:39:21", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205529", "1", "2018-01-30 20:26:39", "2018-01-30 20:26:39", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_width_all=\"4px\" border_color_all=\"#a5a000\" border_style_all=\"double\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-30 20:26:39", "2018-01-30 20:26:39", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205539", "1", "2018-01-31 05:52:53", "2018-01-31 05:52:53", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI<br />\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br />\n4:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT<br />\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN<br />\n</b></span><span style=\"font-size: 15px;\">We are closed</span>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-01-31 05:52:53", "2018-01-31 05:52:53", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205898", "1", "2018-02-28 03:51:38", "2018-02-28 03:51:38", "[et_pb_section bb_built=\"1\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Enquiry\" _builder_version=\"3.0.96\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(0,0,0,0)\" form_field_font=\"Montserrat||||||||\" form_field_text_color=\"#bfbfbf\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22title%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" max_width_tablet=\"50%\" max_width_phone=\"50%\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"First Name *\" field_type=\"input\" field_id=\"FirstName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Last Name *\" field_type=\"input\" field_id=\"LastName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"PhoneNumber\" field_title=\"Phone Number\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"ArrivalDate\" field_title=\"Arrival Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"DepartureDate\" field_title=\"Departure Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 03:51:38", "2018-02-28 03:51:38", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205847", "1", "2018-02-20 22:03:44", "2018-02-20 22:03:44", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\" padding_top_1=\"300px\" padding_bottom_1=\"300px\" padding_1_tablet=\"50px|10%|50px|\" padding_1_phone=\"|||30px\" padding_1_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_phone=\"|||30px\" padding_tablet=\"50px|10%|50px|\" padding_last_edited=\"on|desktop\" padding_bottom=\"300px\" padding_top=\"300px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"ANGSANA\" button_text=\"Know More\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.96\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" animation_style=\"fade\" locked=\"off\" url_new_window=\"on\"]<p style=\"text-align: left;\">A perfect marriage between cosy and beauty – this 2-storey home is the ideal residence for Couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House</p>\n<p style=\"text-align: left;\">\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"300px\" _builder_version=\"3.0.93\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 22:03:44", "2018-02-20 22:03:44", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205837", "1", "2018-02-20 21:23:19", "2018-02-20 21:23:19", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/02/bedroom.jpg\" padding_top_1=\"300px\" padding_bottom_1=\"300px\" padding_1_tablet=\"50px|10%|50px|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.93\" padding_1_phone=\"|||30px\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" show_inner_shadow=\"on\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Elegance In Interior Design.\" button_url=\"#top\" button_text=\"Know More\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider height=\"300px\" _builder_version=\"3.0.93\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\" background_color=\"#3a4149\"][et_pb_row admin_label=\"CTA Row\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" _builder_version=\"3.0.93\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Everything Customized to YOU</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Mauris non tempor quam, et lacinia sapien. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Research\" image=\"http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_1.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" image=\"http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_2.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Build\" image=\"http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_3.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#1a1a1a\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.93\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/02/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" disabled_on=\"on|on|off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\" background_color=\"#212a34\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" disabled_on=\"on|on|off\"]\r\n<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\" /][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/section-bg-2-1.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"] We won\'t spam! [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#f74b47\"][et_pb_row][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 21:23:19", "2018-02-20 21:23:19", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205544", "1", "2018-01-31 07:40:15", "2018-01-31 07:40:15", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_width=\"2px\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_width=\"2px\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Welcome To Royal\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Our Story\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Welcome To Panbil Service Residence</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Only the Best\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Fully Furnished, Wonderfully Living</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Menu Grid\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_position=\"top_left\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\" custom_padding_tablet=\"||0px|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$26.95\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Grilled Fillet</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"200px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$53.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Chicken Breast</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" header_line_height=\"2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$40.5\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\" locked=\"off\"]<h1>King Crab</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$40.5\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Sea Trout</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$22.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Roasted Bakra</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$22.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Roasted Bakra</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Testimonials\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What People are Saying</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" admin_label=\"Testimonials\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“A Great Find”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Fabulous food & flawless service”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>“Another successful experience”</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]<h1>\"Speechless\"</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Our News & Events\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Don\'t Miss\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>Our News And Events</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" use_border_color=\"on\" border_width=\"0px\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" custom_padding_tablet=\"0px||0px|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-01-31 07:40:15", "2018-01-31 07:40:15", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205569", "1", "2018-02-20 21:06:36", "2018-02-20 21:06:36", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Menu Grid\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_position=\"top_left\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\" custom_padding_tablet=\"||0px|\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\" animation_direction=\"top\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$26.95\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Grilled Fillet</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-07.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"200px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$53.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Chicken Breast</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-04.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" header_line_height=\"2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$40.5\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\" locked=\"off\"]<h1>King Crab</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$40.5\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.8em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Sea Trout</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$22.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Roasted Bakra</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" bg_img_1=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" bg_img_3=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" padding_top_1=\"48px\" padding_right_1=\"24px\" padding_bottom_1=\"48px\" padding_left_1=\"24px\" padding_top_2=\"48px\" padding_right_2=\"24px\" padding_bottom_2=\"48px\" padding_left_2=\"24px\" padding_top_3=\"48px\" padding_right_3=\"24px\" padding_bottom_3=\"48px\" padding_left_3=\"24px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"fade\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"22px\" text_text_color=\"#c39d63\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\"]$22.3\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||10px|\" custom_padding=\"|||\"]<h1>Roasted Bakra</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" locked=\"off\"]Sed ut perspiciatis unde omnis iste error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"48px\" padding_left=\"24px\" padding_right=\"24px\" padding_top=\"48px\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-03.jpg\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"100px\" _builder_version=\"3.0.77\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]", "Food Service", "", "publish", "closed", "closed", "", "food-service", "", "", "2018-02-20 21:06:36", "2018-02-20 21:06:36", "", "0", "http://panbilresidence.com/et_pb_layout/food-service/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205552", "1", "2018-02-20 11:41:30", "2018-02-20 11:41:30", "", "ANGSANA", "", "publish", "closed", "closed", "", "angsana", "", "", "2018-02-20 11:41:30", "2018-02-20 11:41:30", "", "0", "http://panbilresidence.com/?page_id=205552", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205553", "1", "2018-02-20 11:41:30", "2018-02-20 11:41:30", "", "ANGSANA", "", "inherit", "closed", "closed", "", "205552-revision-v1", "", "", "2018-02-20 11:41:30", "2018-02-20 11:41:30", "", "205552", "http://panbilresidence.com/205552-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205554", "1", "2018-02-20 11:43:30", "2018-02-20 11:43:30", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_align=\"right\" header_3_text_color=\"#c39d63\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Fully furnished villa type with 3 bedroom sets, 2 bathrooms, 1 house kitchen and one beautiful fully durnished lounge.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "MATOA", "", "publish", "closed", "closed", "", "matoa", "", "", "2018-03-26 23:02:52", "2018-03-26 23:02:52", "", "0", "http://panbilresidence.com/?page_id=205554", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205555", "1", "2018-02-20 11:43:30", "2018-02-20 11:43:30", "", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-02-20 11:43:30", "2018-02-20 11:43:30", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205556", "1", "2018-02-20 11:56:25", "2018-02-20 11:56:25", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>The beautiful scenery of this type of villa will bring you the real feeling of Kuta, 2 big bedrooms are well furnished with 2 lounges for any occasions, one kitchen and two bathrooms.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Master Bedroom</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully Equipped Bathrooms</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully Furnished Kitchen</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>2 Main Lounges</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "KUTA", "", "publish", "closed", "closed", "", "kuta", "", "", "2018-03-26 23:06:39", "2018-03-26 23:06:39", "", "0", "http://panbilresidence.com/?page_id=205556", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205557", "1", "2018-02-20 11:56:25", "2018-02-20 11:56:25", "", "KUTA", "", "inherit", "closed", "closed", "", "205556-revision-v1", "", "", "2018-02-20 11:56:25", "2018-02-20 11:56:25", "", "205556", "http://panbilresidence.com/205556-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205558", "1", "2018-02-20 11:56:39", "2018-02-20 11:56:39", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-10.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-6.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa new kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>The New Kuta is completed with 3 special bedrooms, 3 bathrooms, 2 walk in closets, 1 fully equipped kitchen, and one lounge.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 beautiful full size bedrooms</p>[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 comfortable bathrooms</p>[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>2 walk in closets</p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully quipped kitchen</p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 big lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "NEW KUTA", "", "publish", "closed", "closed", "", "new-kuta", "", "", "2018-03-26 23:13:29", "2018-03-26 23:13:29", "", "0", "http://panbilresidence.com/?page_id=205558", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205559", "1", "2018-02-20 11:56:39", "2018-02-20 11:56:39", "", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-02-20 11:56:39", "2018-02-20 11:56:39", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205560", "1", "2018-02-20 11:56:54", "2018-02-20 11:56:54", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa sanur</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Sanur Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Villa Sanur is completed with 3 bedrooms, 3 bathrooms, 3 walk in closets, 1 fully equipped in house kitchen, and 1 lounge.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 beautiful fully furnished bedrooms</p>[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 fully equipped bathrooms</p>[/et_pb_blurb][et_pb_blurb title=\"3 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 walk in closets</p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully equipped kitchen</p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully furnished lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "SANUR", "", "publish", "closed", "closed", "", "sanur", "", "", "2018-03-26 23:16:28", "2018-03-26 23:16:28", "", "0", "http://panbilresidence.com/?page_id=205560", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205561", "1", "2018-02-20 11:56:54", "2018-02-20 11:56:54", "", "SANUR", "", "inherit", "closed", "closed", "", "205560-revision-v1", "", "", "2018-02-20 11:56:54", "2018-02-20 11:56:54", "", "205560", "http://panbilresidence.com/205560-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205562", "1", "2018-02-20 11:57:07", "2018-02-20 11:57:07", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Jimbaran is completed with 4 bedrooms, 4 bathrooms, 4 walk in closet, one kitchen and one lounge. A big swimming pool in the back of the house completes the house itself.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>4 fully furnished beautiful bedrooms</p>[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>4 fully equipped bathrooms</p>[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>4 walk in closets</p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully equipped kitchen</p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully furnished lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "JIMBARAN", "", "publish", "closed", "closed", "", "jimbaran", "", "", "2018-03-26 23:28:31", "2018-03-26 23:28:31", "", "0", "http://panbilresidence.com/?page_id=205562", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("205563", "1", "2018-02-20 11:57:07", "2018-02-20 11:57:07", "", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 11:57:07", "2018-02-20 11:57:07", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205564", "1", "2018-02-20 12:08:49", "2018-02-20 12:08:49", "[et_pb_section admin_label=\"section\"]\n		[et_pb_row admin_label=\"row\"]\n			[et_pb_column type=\"4_4\"]\n				[et_pb_text admin_label=\"Text\"]\n					\n				[/et_pb_text]\n			[/et_pb_column]\n		[/et_pb_row]\n	[/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 12:08:49", "2018-02-20 12:08:49", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205849", "1", "2018-02-20 22:04:32", "2018-02-20 22:04:32", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\" padding_top_1=\"300px\" padding_bottom_1=\"300px\" padding_1_tablet=\"50px|10%|50px|\" padding_1_phone=\"|||30px\" padding_1_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_phone=\"|||30px\" padding_tablet=\"50px|10%|50px|\" padding_last_edited=\"on|desktop\" padding_bottom=\"300px\" padding_top=\"300px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"JIMBARAN\" button_text=\"Know More\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.96\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" animation_style=\"fade\" locked=\"off\" url_new_window=\"on\"]<p>Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.</p>\n<p style=\"text-align: left;\">\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"300px\" _builder_version=\"3.0.93\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 22:04:32", "2018-02-20 22:04:32", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205853", "1", "2018-02-20 22:08:34", "2018-02-20 22:08:34", "", "_MG_7035", "", "inherit", "open", "closed", "", "_mg_7035", "", "", "2018-02-20 22:08:34", "2018-02-20 22:08:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_7035.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205851", "1", "2018-02-20 22:08:18", "2018-02-20 22:08:18", "", "_MG_7033", "", "inherit", "open", "closed", "", "_mg_7033", "", "", "2018-02-20 22:08:18", "2018-02-20 22:08:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_7033.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205852", "1", "2018-02-20 22:08:27", "2018-02-20 22:08:27", "", "_MG_7034", "", "inherit", "open", "closed", "", "_mg_7034", "", "", "2018-02-20 22:08:27", "2018-02-20 22:08:27", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_7034.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205856", "1", "2018-02-20 22:17:23", "2018-02-20 22:17:23", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\" padding_top_1=\"300px\" padding_bottom_1=\"300px\" padding_1_tablet=\"50px|10%|50px|\" padding_1_phone=\"|||30px\" padding_1_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_phone=\"|||30px\" padding_tablet=\"50px|10%|50px|\" padding_last_edited=\"on|desktop\" padding_bottom=\"300px\" padding_top=\"300px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"JIMBARAN\" button_text=\"Know More\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.96\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" animation_style=\"fade\" locked=\"off\" url_new_window=\"on\"]<p>Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.</p>\n<p style=\"text-align: left;\">\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"300px\" _builder_version=\"3.0.93\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" parallax=\"off\" parallax_method=\"on\"][et_pb_row_inner _builder_version=\"3.0.96\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h1 style=\"text-align: center;\">Jimbaran Type - Four (4) Bedrooms</h1>\n<h1 style=\"text-align: center;\">Build in Area: 390 - 440 m2</h1>\n<h1 style=\"text-align: center;\">Land Plot Area : 661 - 1,536 m2</h1>\n<p style=\"text-align: center;\"></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\" module_alignment=\"left\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7034.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 22:17:23", "2018-02-20 22:17:23", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205567", "1", "2018-02-20 12:19:30", "2018-02-20 12:19:30", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" title_text_color=\"#ffffff\" content_text_color=\"#bfbfbf\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter title=\"Sales &amp; Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter title=\"Brand &amp; Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"https://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 12:19:30", "2018-02-20 12:19:30", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205566", "1", "2018-02-20 12:11:21", "2018-02-20 12:11:21", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"A Look Inside\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" subhead_font_color=\"#bebebe\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-04.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Gallery\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px||100px|\" collapsed=\"off\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-01.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-02.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-08.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-06.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-05.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-17.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-13.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-19.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-20.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-12.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-15.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-11.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"1.5%||1.5%|\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-18.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-16.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-14.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food-21.jpg\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-02-20 12:11:21", "2018-02-20 12:11:21", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205550", "1", "2018-02-19 03:00:08", "2018-02-19 03:00:08", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-19 03:00:08", "2018-02-19 03:00:08", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205854", "1", "2018-02-20 22:08:42", "2018-02-20 22:08:42", "", "_MG_7036", "", "inherit", "open", "closed", "", "_mg_7036", "", "", "2018-02-20 22:08:42", "2018-02-20 22:08:42", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205855", "1", "2018-02-20 22:08:49", "2018-02-20 22:08:49", "", "_MG_7037", "", "inherit", "open", "closed", "", "_mg_7037", "", "", "2018-02-20 22:08:49", "2018-02-20 22:08:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_7037.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205845", "1", "2018-02-20 22:00:18", "2018-02-20 22:00:18", "", "_MG_6988", "", "inherit", "open", "closed", "", "_mg_6988", "", "", "2018-02-20 22:00:18", "2018-02-20 22:00:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205846", "1", "2018-02-20 22:02:41", "2018-02-20 22:02:41", "", "_MG_6988", "", "inherit", "open", "closed", "", "_mg_6988-2", "", "", "2018-02-20 22:02:41", "2018-02-20 22:02:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205840", "1", "2018-02-20 21:28:08", "2018-02-20 21:28:08", "[et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\" template_type=\"row\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row]", "VILLA GALLERY", "", "publish", "closed", "closed", "", "villa-gallery", "", "", "2018-02-20 21:28:08", "2018-02-20 21:28:08", "", "0", "http://panbilresidence.com/et_pb_layout/villa-gallery/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205841", "1", "2018-02-20 21:28:17", "2018-02-20 21:28:17", "[et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\" template_type=\"row\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row]", "APARTMENT GALLERY", "", "publish", "closed", "closed", "", "apartment-gallery", "", "", "2018-02-20 21:28:17", "2018-02-20 21:28:17", "", "0", "http://panbilresidence.com/et_pb_layout/apartment-gallery/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205858", "1", "2018-02-21 03:25:06", "2018-02-21 03:25:06", "", "_MG_6604", "", "inherit", "open", "closed", "", "_mg_6604", "", "", "2018-02-21 03:25:06", "2018-02-21 03:25:06", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205859", "1", "2018-02-21 03:35:32", "2018-02-21 03:35:32", "", "_MG_6681", "", "inherit", "open", "closed", "", "_mg_6681", "", "", "2018-02-21 03:35:32", "2018-02-21 03:35:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205865", "1", "2018-02-21 04:02:13", "2018-02-21 04:02:13", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]<p>A perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House</p>\n[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]<p>Lose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!</p>\n[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]<p>Charming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.</p>\n[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]<p>Relaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!</p>\n[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]<p>The New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors <br />leading to the landscaped rear garden - an ideal place to retreat. <br />The 3-bedrooms also come lovely en-suite.</p>\n[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]<p>Stunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity</p>\n[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]<p>Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.</p>\n[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\n<p style=\"text-align: center;\">experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-21 04:02:13", "2018-02-21 04:02:13", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205573", "1", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "bedroom", "", "inherit", "open", "closed", "", "bedroom", "", "", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/bedroom.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205574", "1", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "number-icons_1", "", "inherit", "open", "closed", "", "number-icons_1", "", "", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205575", "1", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "number-icons_2", "", "inherit", "open", "closed", "", "number-icons_2", "", "", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205576", "1", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "number-icons_3", "", "inherit", "open", "closed", "", "number-icons_3", "", "", "2018-02-20 21:21:23", "2018-02-20 21:21:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wpj1_posts` VALUES("205577", "1", "2018-02-20 21:21:24", "2018-02-20 21:21:24", "", "section-bg-5", "", "inherit", "open", "closed", "", "section-bg-5", "", "", "2018-02-20 21:21:24", "2018-02-20 21:21:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/section-bg-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205578", "1", "2018-02-20 21:21:25", "2018-02-20 21:21:25", "", "section-bg-2-1", "", "inherit", "open", "closed", "", "section-bg-2-1", "", "", "2018-02-20 21:21:25", "2018-02-20 21:21:25", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/section-bg-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205835", "1", "2018-01-09 17:39:12", "2018-01-09 17:39:12", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"http://panbilresidence.com/wp-content/uploads/2018/02/bedroom.jpg\" padding_top_1=\"300px\" padding_bottom_1=\"300px\" padding_1_tablet=\"50px|10%|50px|\" padding_1_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\" padding_1_phone=\"|||30px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_phone=\"|||30px\" padding_tablet=\"50px|10%|50px|\" padding_last_edited=\"on|desktop\" padding_bottom=\"300px\" padding_top=\"300px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Elegance In Interior Design.\" button_url=\"#top\" button_text=\"Know More\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"http://panbilresidence.com/wp-content/uploads/2018/02/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"300px\" _builder_version=\"3.0.93\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Everything Customized to YOU</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Mauris non tempor quam, et lacinia sapien.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Research\" image=\"http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_1.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_2.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Build\" image=\"http://panbilresidence.com/wp-content/uploads/2018/02/number-icons_3.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/02/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/section-bg-2-1.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Interior Design - Home", "", "publish", "closed", "closed", "", "interior-design-home", "", "", "2018-01-09 17:39:12", "2018-01-09 17:39:12", "", "0", "http://panbilresidence.com/et_pb_layout/interior-design-home/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205838", "1", "2018-02-20 21:25:51", "2018-02-20 21:25:51", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"28px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. </p>\n<p style=\"text-align: center;\">Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy</p>\n<p style=\"text-align: center;\">the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\n<p style=\"text-align: center;\">with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\n<p style=\"text-align: center;\">Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\n<p style=\"text-align: center;\">experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-20 21:25:51", "2018-02-20 21:25:51", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206134", "1", "2018-03-03 09:13:16", "2018-03-03 09:13:16", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nVillas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"color: #353e44; background: white;\">Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents.  </span></span></p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"On-Site Maintenance &amp; Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\">Our Maintenance team </span><span style=\"font-family: \'Arial\',\'sans-serif\';\">is<span style=\"color: #353e44; background: white;\"> always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</span></span></p>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1><em>A Place I Call Home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-03 09:13:16", "2018-03-03 09:13:16", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205931", "1", "2018-03-01 19:07:28", "2018-03-01 19:07:28", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\n<p> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Villas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\"></span><span style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"color: #353e44; background: white;\">Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents.  </span></span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\">Our Maintenance team </span><span style=\"font-family: \'Arial\',\'sans-serif\';\">is<span style=\"color: #353e44; background: white;\"> always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</span></span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ededed\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-01 19:07:28", "2018-03-01 19:07:28", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205929", "1", "2018-03-01 19:06:41", "2018-03-01 19:06:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\n<p> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Villas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\"></span><span style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"color: #353e44; background: white;\">Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents.  </span></span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\">Our Maintenance team </span><span style=\"font-family: \'Arial\',\'sans-serif\';\">is<span style=\"color: #353e44; background: white;\"> always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</span></span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ededed\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]A perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House\r[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]Lose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!\r[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]Charming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.\r[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]Relaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!\r[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]The New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors\r\nleading to the landscaped rear garden - an ideal place to retreat.\r\nThe 3-bedrooms also come lovely en-suite.\r[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]Stunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity\r[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.\r[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-01 19:06:41", "2018-03-01 19:06:41", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205861", "1", "2018-02-21 03:43:29", "2018-02-21 03:43:29", "", "_MG_9532", "", "inherit", "open", "closed", "", "_mg_9532", "", "", "2018-02-21 03:43:29", "2018-02-21 03:43:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205862", "1", "2018-02-21 03:47:31", "2018-02-21 03:47:31", "", "_MG_9669", "", "inherit", "open", "closed", "", "_mg_9669", "", "", "2018-02-21 03:47:31", "2018-02-21 03:47:31", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205863", "1", "2018-02-21 03:50:36", "2018-02-21 03:50:36", "", "_MG_6604", "", "inherit", "open", "closed", "", "_mg_6604-2", "", "", "2018-02-21 03:50:36", "2018-02-21 03:50:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205864", "1", "2018-02-21 03:54:06", "2018-02-21 03:54:06", "", "_MG_9386", "", "inherit", "open", "closed", "", "_mg_9386-2", "", "", "2018-02-21 03:54:06", "2018-02-21 03:54:06", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205860", "1", "2018-02-21 03:40:48", "2018-02-21 03:40:48", "[et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\" template_type=\"row\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row]", "VILLA GALLERY 2", "", "publish", "closed", "closed", "", "villa-gallery-2", "", "", "2018-02-21 03:40:48", "2018-02-21 03:40:48", "", "0", "http://panbilresidence.com/et_pb_layout/villa-gallery-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205878", "1", "2018-02-27 15:34:17", "2018-02-27 15:34:17", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\r\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"On-Site Maintenance &amp; Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1><em>A Place I Call Home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#ededed\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]\r\n\r\nA perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]\r\n\r\nLose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]\r\n\r\nCharming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]\r\n\r\nRelaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]\r\n\r\nThe New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors\r\nleading to the landscaped rear garden - an ideal place to retreat.\r\nThe 3-bedrooms also come lovely en-suite.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]\r\n\r\nStunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]\r\n\r\nTurn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.\r\n\r\n[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-27 15:34:17", "2018-02-27 15:34:17", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205868", "1", "2018-02-21 04:09:39", "2018-02-21 04:09:39", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ededed\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]<p>A perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House</p>\n[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]<p>Lose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!</p>\n[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]<p>Charming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.</p>\n[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]<p>Relaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!</p>\n[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]<p>The New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors <br />leading to the landscaped rear garden - an ideal place to retreat. <br />The 3-bedrooms also come lovely en-suite.</p>\n[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]<p>Stunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity</p>\n[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]<p>Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.</p>\n[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\n<p style=\"text-align: center;\">experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-21 04:09:39", "2018-02-21 04:09:39", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205867", "1", "2018-02-21 04:09:01", "2018-02-21 04:09:01", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1\">\n<div class=\"et_pb_text_inner\">\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\n<div class=\"single-property-highlight\">\n<p> </p>\n</div>\n</div>\n</div>\n</div>\n<p><span style=\"font-size: 17px;\"></span></p>\n<p><span style=\"font-size: 17px;\"></span><span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"<br /> - </em><span style=\"color: #c39d63;\">Unknown</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]<p>A perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House</p>\n[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]<p>Lose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!</p>\n[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]<p>Charming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.</p>\n[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]<p>Relaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!</p>\n[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]<p>The New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors <br />leading to the landscaped rear garden - an ideal place to retreat. <br />The 3-bedrooms also come lovely en-suite.</p>\n[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]<p>Stunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity</p>\n[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_color=\"#ffffff\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]<p>Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.</p>\n[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\n\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\n</strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\n<p style=\"text-align: center;\">experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-21 04:09:01", "2018-02-21 04:09:01", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205925", "1", "2018-03-01 19:02:15", "2018-03-01 19:02:15", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ededed\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]A perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House\r[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]Lose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!\r[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]Charming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.\r[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]Relaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!\r[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]The New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors\r\nleading to the landscaped rear garden - an ideal place to retreat.\r\nThe 3-bedrooms also come lovely en-suite.\r[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]Stunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity\r[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.\r[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-01 19:02:15", "2018-03-01 19:02:15", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205879", "1", "2018-02-27 15:35:12", "2018-02-27 15:35:12", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Established in 2011,  PT Panbil Service Residence is the leader in offering professional property management in Batam, Indonesia. With a portfolio of over 40 companies, which ranges from international companies to government representatives, PT PSR is competent in providing services that are tailored to our clients\' specific needs. Some of our clients include SMOE, Citra Tubindo Engineering, PT Schneider, Conoco Phillips, Heat Exchangers, PT Samudera Oceaneering, P.T. Anggrek Hitam, Mc Connell Dowell and Epcos.</p>\r\n<p style=\"text-align: center;\">Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ededed\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" background_color=\"#050505\" background_blend=\"difference\"][et_pb_slide heading=\"ANGSANA\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/angsana/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_7036.jpg\"]A perfect marriage between cozy and beauty – this 2-storey home is the ideal residence for couples or even a new family welcoming space. The villa is fully-furnished, surrounded by beautifully maintained gardens, and within walking distance to the Club House\r[/et_pb_slide][et_pb_slide heading=\"MATOA\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/matoa/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6988-1.jpg\"]Lose yourself in your own sanctuary in this cozzy 3 bedroom home! A fully-furnished home with a spacious and modern equipped kitchen, refurbished bedrooms, dining and living rooms, this house is the very definition of \"so much for so little\"!\r[/et_pb_slide][et_pb_slide heading=\"MAHONI\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\"]Charming 2-story home, fully furnished with lavishly romantic interiors, the 3 spacious bedrooms are beautifully refurbished, and the master bedroom comes with a modern and equipped private bathroom.\r[/et_pb_slide][et_pb_slide heading=\"KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9532.jpg\"]Relaxation is the way of life in this sumptuous Balinese-styled villa! With its lush tropical garden, accompanied by the stunning interiors rich in wood and Balinese carvings, it will be hard not to feel as if you\'re not on a holiday!\r[/et_pb_slide][et_pb_slide heading=\"NEW KUTA\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9669.jpg\"]The New Kuta is The home to relax in both style and comfort. This spacious 2-storey home is fully furnished with exoticly beautiful Balinese-style finishes. You will find a spacious lounge with doors\r\nleading to the landscaped rear garden - an ideal place to retreat.\r\nThe 3-bedrooms also come lovely en-suite.\r[/et_pb_slide][et_pb_slide heading=\"SANUR\" button_text=\"VIEW MORE\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6604-1.jpg\"]Stunning Bali-style home surrounded by the lush tropical forest landscape! This sizeable single storey resort-like home is fully furnished with wooden Balinese furnitures, resulting in a home full of calmness and serenity\r[/et_pb_slide][et_pb_slide heading=\"JIMBARAN\" button_text=\"VIEW MORE\" button_link=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_9386.jpg\"]Turn your dream house into a reality in this tropical Balinese style retreat! Fully furnished with the exotic Balinese inspired furnitures, this beautiful and spacious 4-bedrooms house is the ultimate place to relax and recharge.\r[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-02-27 15:35:12", "2018-02-27 15:35:12", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205882", "1", "2018-02-27 16:18:18", "2018-02-27 16:18:18", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore. [/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"] Contact [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"] Contact [/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"] Hours of Operation [/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] <strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span> [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] <strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span> [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] <span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span> [/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions! [/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"] Dialogue is an essential part of any script [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:18:18", "2018-02-27 16:18:18", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205883", "1", "2018-02-27 16:19:29", "2018-02-27 16:19:29", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" border_radii=\"on||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:19:29", "2018-02-27 16:19:29", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205902", "1", "2018-02-28 06:02:03", "2018-02-28 06:02:03", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-28 06:02:03", "2018-02-28 06:02:03", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205884", "1", "2018-02-27 16:21:35", "2018-02-27 16:21:35", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:21:35", "2018-02-27 16:21:35", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205889", "1", "2018-02-28 02:54:08", "2018-02-28 02:54:08", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-28 02:54:08", "2018-02-28 02:54:08", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205885", "1", "2018-02-27 16:31:34", "2018-02-27 16:31:34", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_Selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:31:34", "2018-02-27 16:31:34", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205888", "1", "2018-02-27 16:53:01", "2018-02-27 16:53:01", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:53:01", "2018-02-27 16:53:01", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205887", "1", "2018-02-27 16:48:58", "2018-02-27 16:48:58", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:48:58", "2018-02-27 16:48:58", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205886", "1", "2018-02-27 16:43:11", "2018-02-27 16:43:11", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" form_background_color=\"rgba(0,0,0,0)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" form_field_font=\"Montserrat||||\" form_field_text_color=\"#bfbfbf\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_border_color=\"on\" use_redirect=\"off\" button_icon_placement=\"right\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_Selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22last_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Email Address%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Phone Number%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" _builder_version=\"3.0.96\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Subject%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Message%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22first_name%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-27 16:43:11", "2018-02-27 16:43:11", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206101", "1", "2018-03-03 05:42:42", "2018-03-03 05:42:42", "[et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" template_type=\"module\"][/et_pb_button]", "default button style", "", "publish", "closed", "closed", "", "default-button-style", "", "", "2018-03-03 05:42:42", "2018-03-03 05:42:42", "", "0", "http://panbilresidence.com/et_pb_layout/default-button-style/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("205892", "1", "2018-02-28 02:57:31", "2018-02-28 02:57:31", " ", "", "", "publish", "closed", "closed", "", "205892", "", "", "2018-03-25 14:47:41", "2018-03-25 14:47:41", "", "0", "http://panbilresidence.com/?p=205892", "4", "nav_menu_item", "", "0");
INSERT INTO `wpj1_posts` VALUES("205893", "1", "2018-02-28 03:03:41", "2018-02-28 03:03:41", "<p>[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"About Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]</p><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p><p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/logo-panbil-residence-png.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] <br /> [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]</p><p>Our Story</p><p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] <br /> [/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]</p><h1>Where It All Began</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]</p><p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p><p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]</p><p>In the Spotlight</p><p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] <br /> [/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]</p><h1>Awards &amp; Recognition</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] <br /> [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] <br /> [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] <br /> [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] <br /> [/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]</p><p>Features</p><p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] <br /> [/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]</p><h1>What We Offer</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Daily Fresh Menus\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]</p><p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fresh Ingredients\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]</p><p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Tasty Meals\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]</p><p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Creative Chefs\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]</p><p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Authentic Cuisine\" use_icon=\"on\" font_icon=\"%%111%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]</p><p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Home Roasted Coffee\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.77\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]</p><p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.77\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]</p><p>Testimonials</p><p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] <br /> [/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]</p><h1>What People are Saying</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"] <br /> [/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]</p><h1>“A Great Find”</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]</p><p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"</p><p><span style=\"color: #1f1f1f;\"> Divi</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"] <br /> [/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]</p><h1>“Fabulous food &amp; flawless service”</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]</p><p>\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"</p><p><span style=\"color: #1f1f1f;\"> Bloom</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"] <br /> [/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]</p><h1>“Another successful experience”</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]</p><p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"</p><p><span style=\"color: #1f1f1f;\"> Extra</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"] <br /> [/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]</p><h1>\"Speechless\"</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]</p><p>\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"</p><p><span style=\"color: #1f1f1f;\"> Monarch</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]</p><p>Hours of Operation</p><p>[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]</p><p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p><p>[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]</p><p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p><p>[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]</p><p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p><p>[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]</p><h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p><p>[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]</p><p>Dialogue is an essential part of any script</p><p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]</p>", "ABOUT US", "", "inherit", "closed", "closed", "", "57-autosave-v1", "", "", "2018-02-28 03:03:41", "2018-02-28 03:03:41", "", "57", "http://panbilresidence.com/57-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205903", "1", "2018-02-28 06:19:01", "2018-02-28 06:19:01", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text] {\\n    width: 100%;\\n    padding: 12px 20px;\\n    margin: 8px 0;\\n    box-sizing: border-box;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 06:19:01\"\n    }\n}", "", "", "trash", "closed", "closed", "", "0022e51b-f13f-4d66-8afd-d4b62680c390", "", "", "2018-02-28 06:19:01", "2018-02-28 06:19:01", "", "0", "http://panbilresidence.com/0022e51b-f13f-4d66-8afd-d4b62680c390/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205921", "1", "2018-02-28 07:24:01", "2018-02-28 07:24:01", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.77\" title_font=\"Playfair Display||||\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Playfair Display||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"MailChimp|03dac884f0\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-02-28 07:24:01", "2018-02-28 07:24:01", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206205", "1", "2018-03-05 08:52:03", "2018-03-05 08:52:03", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 08:52:03", "2018-03-05 08:52:03", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206200", "1", "2018-03-05 04:24:34", "2018-03-05 04:24:34", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][et_pb_button _builder_version=\"3.0.96\" button_text=\"BOOK NOW\" url_new_window=\"on\" background_layout=\"light\" custom_button=\"on\" button_icon_placement=\"right\" button_url=\"http://panbilresidence.com/enquiry/\" button_text_color=\"#c39d63\" button_icon=\"%%20%%\" button_icon_color=\"#ffffff\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#c39d63\" button_border_color_hover=\"#c39d63\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" custom_margin=\"||12px|\"]\r\n\r\nCustomer Review\r\n\r\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_testimonial author=\"Jhon Doe\" job_title=\"Manager\" company_name=\"Elegant Themes\" portrait_url=\"https://www.elegantthemes.com/preview/Divi/wp-content/uploads/2014/04/team-member-1.jpg\" background_color=\"#c39d63\" _builder_version=\"3.0.96\" quote_icon_color=\"#bfbfbf\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molest.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial author=\"Daniel\" job_title=\"Designer\" company_name=\"Elegant Themes\" portrait_url=\"https://www.elegantthemes.com/preview/Divi/wp-content/uploads/2014/04/team-member-4.jpg\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" quote_icon_color=\"#c39d63\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molest.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 04:24:34", "2018-03-05 04:24:34", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206164", "1", "2018-03-03 10:39:26", "2018-03-03 10:39:26", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-03-03 10:39:26", "2018-03-03 10:39:26", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205922", "1", "2018-02-28 07:24:23", "2018-02-28 07:24:23", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Playfair Display||||||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat||||||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 07:24:23", "2018-02-28 07:24:23", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205923", "1", "2018-02-28 07:24:48", "2018-02-28 07:24:48", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Playfair Display||||||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat||||||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 07:24:48", "2018-02-28 07:24:48", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205897", "1", "2018-02-28 03:50:18", "2018-02-28 03:50:18", "[et_pb_section bb_built=\"1\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Enquiry\" _builder_version=\"3.0.96\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(0,0,0,0)\" form_field_font=\"Montserrat||||||||\" form_field_text_color=\"#bfbfbf\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22title%22,%22condition%22:%22is%22,%22value%22:%22%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" max_width_tablet=\"50%\" max_width_phone=\"50%\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"First Name *\" field_type=\"input\" field_id=\"FirstName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Last Name *\" field_type=\"input\" field_id=\"LastName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"PhoneNumber\" field_title=\"Phone Number\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"ArrivalDate\" field_title=\"Arrival Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"DepartureDate\" field_title=\"Departure Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" /][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 03:50:18", "2018-02-28 03:50:18", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205899", "1", "2018-02-28 04:23:02", "2018-02-28 04:23:02", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Enquiry\" _builder_version=\"3.0.96\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(0,0,0,0)\" form_field_font=\"Montserrat||||||||\" form_field_text_color=\"#bfbfbf\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22title%22,%22condition%22:%22is%22,%22value%22:%22Mr%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" max_width_tablet=\"50%\" max_width_phone=\"50%\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"First Name *\" field_type=\"input\" field_id=\"FirstName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Last Name *\" field_type=\"input\" field_id=\"LastName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"PhoneNumber\" field_title=\"Phone Number\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"ArrivalDate\" field_title=\"Arrival Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"DepartureDate\" field_title=\"Departure Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Playfair Display||||||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat||||||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 04:23:02", "2018-02-28 04:23:02", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205900", "1", "2018-02-28 04:24:19", "2018-02-28 04:24:19", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Enquiry\" _builder_version=\"3.0.96\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(0,0,0,0)\" form_field_font=\"Montserrat||||||||\" form_field_text_color=\"#bfbfbf\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22title%22,%22condition%22:%22is%22,%22value%22:%22Mr%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" max_width_tablet=\"50%\" max_width_phone=\"50%\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"First Name *\" field_type=\"input\" field_id=\"FirstName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Last Name *\" field_type=\"input\" field_id=\"LastName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"PhoneNumber\" field_title=\"Phone Number\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"ArrivalDate\" field_title=\"Arrival Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"DepartureDate\" field_title=\"Departure Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Playfair Display||||||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat||||||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 04:24:19", "2018-02-28 04:24:19", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205901", "1", "2018-02-28 05:48:13", "2018-02-28 05:48:13", "<label> First Name *\r\n    [text* first-name] </label>\r\n\r\n<label> Last Name *\r\n    [text* last-name] </label>\r\n\r\n<label> Your Email *\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Send\"]\n1\nPanbil Residence \"[your-subject]\"\n[first-name] [last-name] <admin@panbilresidence.com>\nadmin@panbilresidence.com\nFrom: [first-name] [last-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Panbil Residence (http://panbilresidence.com)\nReply-To: [your-email]\n\n\n\n\nPanbil Residence \"[your-subject]\"\nPanbil Residence <admin@panbilresidence.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Panbil Residence (http://panbilresidence.com)\nReply-To: admin@panbilresidence.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1", "", "", "2018-02-28 07:22:28", "2018-02-28 07:22:28", "", "0", "http://panbilresidence.com/?post_type=wpcf7_contact_form&#038;p=205901", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpj1_posts` VALUES("205910", "1", "2018-02-28 06:28:18", "2018-02-28 06:28:18", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ntextarea {\\n    width: 100%;\\n    padding: 12px 20px;\\n    margin: 8px 0;\\n    box-sizing: border-box;\\n}\\n\\ninput[type=submit] {\\n\\tbackground-color: #4CAF50; /* Green */\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 16px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 06:28:18\"\n    }\n}", "", "", "trash", "closed", "closed", "", "0941cb85-9b5b-43fb-a3cd-4ee062cb0b65", "", "", "2018-02-28 06:28:18", "2018-02-28 06:28:18", "", "0", "http://panbilresidence.com/?p=205910", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205911", "1", "2018-02-28 06:28:18", "2018-02-28 06:28:18", "input[type=text],\ninput[type=email],\ntextarea {\n    width: 100%;\n    padding: 12px 20px;\n    margin: 8px 0;\n    box-sizing: border-box;\n}\n\ninput[type=submit] {\n	background-color: #4CAF50; /* Green */\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 16px;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 06:28:18", "2018-02-28 06:28:18", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205912", "1", "2018-02-28 06:36:31", "2018-02-28 06:36:31", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ntextarea {\\n    width: 100%;\\n    padding: 12px 20px;\\n    margin: 8px 0;\\n    box-sizing: border-box;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 06:36:31\"\n    }\n}", "", "", "trash", "closed", "closed", "", "62023ecd-4551-4e86-806d-276f45372005", "", "", "2018-02-28 06:36:31", "2018-02-28 06:36:31", "", "0", "http://panbilresidence.com/?p=205912", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205913", "1", "2018-02-28 06:36:31", "2018-02-28 06:36:31", "input[type=text],\ninput[type=email],\ntextarea {\n    width: 100%;\n    padding: 12px 20px;\n    margin: 8px 0;\n    box-sizing: border-box;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 06:36:31", "2018-02-28 06:36:31", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205914", "1", "2018-02-28 06:40:33", "2018-02-28 06:40:33", "Your Villa Selection\r\n    [checkbox YourVillaSelection \"Matoa\" \"Kuta\" \"New Kuta\" \"Sanur\" \"Jimbaran\" \"Forest House\"]\r\n\r\nYour Apartment Selection\r\n[checkbox YourApartmentSelection \"Studio Deluxe\" \"Studio Executive\" \"Two Bedroom Deluxe\" \"Two Bedroom Executive\" \"Three Bedroom\"]\r\n\r\nTitle\r\n[radio Title default:1 \"Mr\" \"Miss\" \"Mrs\"]\r\n\r\n<label> First Name *\r\n    [text* first-name] </label>\r\n\r\n<label> Last Name *\r\n    [text* last-name] </label>\r\n\r\n<label> Phone Number *\r\n    [text* phone-number] </label>\r\n\r\n<label> Your Email *\r\n    [email* your-email] </label>\r\n\r\n<label> Arrival Date * \r\n    [date* YourArrivalDate \"Your Arrival Date\"] </label>\r\n\r\n<label> Departure Date *\r\n    [date* YourDepartureDate \"Your Departure Date\"] </label>\r\n\r\n<label> Please use the space below for questions or comments.\r\n    [textarea Comment \"Please add more detail here...\"] </label>\r\n\r\n[submit \"Send\"]\n1\nPanbil Residence Enquiry\n[Title] [first-name] [last-name] <admin@panbilresidence.com>\nenquiry@panbilresidence.com\nFrom: [Title] [first-name] [last-name] <[your-email]>\r\nVilla Selection: [YourVillaSelection]\r\nApartment Selection: [YourApartmentSelection]\r\nPhone Number: [phone-number]\r\nArrival Date: [YourArrivalDate]\r\nDeparture Date: [YourDepartureDate]\r\n\r\nMessage Body:\r\n[Comment]\r\n\r\n-- \r\nThis e-mail was sent from a enquiry form on Panbil Residence (http://panbilresidence.com)\nReply-To: [your-email]\n\n\n\n\nPanbil Residence \"[your-subject]\"\nPanbil Residence <admin@panbilresidence.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Panbil Residence (http://panbilresidence.com)\nReply-To: admin@panbilresidence.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.", "Enquiry", "", "publish", "closed", "closed", "", "enquiry", "", "", "2018-03-23 06:04:20", "2018-03-23 06:04:20", "", "0", "http://panbilresidence.com/?post_type=wpcf7_contact_form&#038;p=205914", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wpj1_posts` VALUES("205920", "1", "2018-02-28 07:07:22", "2018-02-28 07:07:22", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Playfair Display||||||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat||||||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 07:07:22", "2018-02-28 07:07:22", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205915", "1", "2018-02-28 06:41:04", "2018-02-28 06:41:04", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Enquiry\" _builder_version=\"3.0.96\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(0,0,0,0)\" form_field_font=\"Montserrat||||||||\" form_field_text_color=\"#bfbfbf\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" border_width_all=\"1px\" border_color_all=\"rgba(0,0,0,0.2)\" title=\"Enquiry\"][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Villa_selection\" field_title=\"Your Villa Selection\" field_type=\"checkbox\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Matoa%22,%22checked%22:0},{%22value%22:%22Kuta%22,%22checked%22:0},{%22value%22:%22New Kuta%22,%22checked%22:0},{%22value%22:%22Sanur%22,%22checked%22:0},{%22value%22:%22Jimbaran%22,%22checked%22:0},{%22value%22:%22Forest House%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22title%22,%22condition%22:%22is%22,%22value%22:%22Mr%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" max_width_tablet=\"50%\" max_width_phone=\"50%\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"Title\" field_title=\"Title\" field_type=\"select\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Mr%22,%22checked%22:0},{%22value%22:%22Miss%22,%22checked%22:0},{%22value%22:%22Mrs%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"off\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"on\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"First Name *\" field_type=\"input\" field_id=\"FirstName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Last Name *\" field_type=\"input\" field_id=\"LastName\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22Name%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"PhoneNumber\" field_title=\"Phone Number\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" _builder_version=\"3.0.96\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"ArrivalDate\" field_title=\"Arrival Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field _builder_version=\"3.0.96\" field_id=\"DepartureDate\" field_title=\"Departure Date *\" field_type=\"input\" checkbox_checked=\"off\" checkbox_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" radio_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" select_options=\"%91{%22value%22:%22%22,%22checked%22:0}%93\" min_length=\"0\" max_length=\"0\" allowed_symbols=\"all\" required_mark=\"on\" conditional_logic=\"off\" conditional_logic_relation=\"off\" conditional_logic_rules=\"%91{%22field%22:%22villa_selection%22,%22condition%22:%22is%22,%22value%22:%22Matoa%22}%93\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" fullwidth_field=\"off\" form_field_font=\"||||||||\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" _builder_version=\"3.0.96\" /][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Playfair Display||||||||\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"Montserrat||||||||\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-02-28 06:41:04", "2018-02-28 06:41:04", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205916", "1", "2018-02-28 06:58:10", "2018-02-28 06:58:10", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px 20px;\\n    margin: 8px 0;\\n    box-sizing: border-box;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 06:58:10\"\n    }\n}", "", "", "trash", "closed", "closed", "", "d7ec2da0-7924-4366-8522-72381fdebf9c", "", "", "2018-02-28 06:58:10", "2018-02-28 06:58:10", "", "0", "http://panbilresidence.com/d7ec2da0-7924-4366-8522-72381fdebf9c/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205917", "1", "2018-02-28 06:58:10", "2018-02-28 06:58:10", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px 20px;\n    margin: 8px 0;\n    box-sizing: border-box;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 06:58:10", "2018-02-28 06:58:10", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205918", "1", "2018-02-28 07:02:06", "2018-02-28 07:02:06", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-02-28 07:02:06\"\n    }\n}", "", "", "trash", "closed", "closed", "", "1d3b32ff-3ac2-453b-9551-62c0027cec73", "", "", "2018-02-28 07:02:06", "2018-02-28 07:02:06", "", "0", "http://panbilresidence.com/1d3b32ff-3ac2-453b-9551-62c0027cec73/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("205919", "1", "2018-02-28 07:02:06", "2018-02-28 07:02:06", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-02-28 07:02:06", "2018-02-28 07:02:06", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205932", "1", "2018-03-01 19:07:47", "2018-03-01 19:07:47", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\n<p> </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Villas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\"></span><span style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"color: #353e44; background: white;\">Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents.  </span></span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\">Our Maintenance team </span><span style=\"font-family: \'Arial\',\'sans-serif\';\">is<span style=\"color: #353e44; background: white;\"> always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</span></span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"ABeeZee||||||||\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-01 19:07:47", "2018-03-01 19:07:47", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206851", "1", "2018-03-26 23:06:39", "2018-03-26 23:06:39", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>The beautiful scenery of this type of villa will bring you the real feeling of Kuta, 2 big bedrooms are well furnished with 2 lounges for any occasions, one kitchen and two bathrooms.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Master Bedroom</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully Equipped Bathrooms</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully Furnished Kitchen</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>2 Main Lounges</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "KUTA", "", "inherit", "closed", "closed", "", "205556-revision-v1", "", "", "2018-03-26 23:06:39", "2018-03-26 23:06:39", "", "205556", "http://panbilresidence.com/205556-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206473", "1", "2018-03-11 16:59:59", "2018-03-11 16:59:59", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-8.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_align=\"right\" header_3_text_color=\"#c39d63\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-11 16:59:59", "2018-03-11 16:59:59", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206843", "1", "2018-03-26 06:16:45", "2018-03-26 06:16:45", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-26 06:16:45", "2018-03-26 06:16:45", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206471", "1", "2018-03-11 16:55:38", "2018-03-11 16:55:38", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 16:55:38", "2018-03-11 16:55:38", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206462", "1", "2018-03-11 16:33:05", "2018-03-11 16:33:05", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_orientation=\"right\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_gallery _builder_version=\"3.0.96\" show_title_and_caption=\"on\" show_pagination=\"on\" fullwidth=\"off\" orientation=\"landscape\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" hover_icon=\"%%51%%\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 16:33:05", "2018-03-11 16:33:05", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("205934", "1", "2018-03-01 20:23:48", "2018-03-01 20:23:48", "", "Type Kuta (1)", "", "inherit", "open", "closed", "", "type-kuta-1", "", "", "2018-03-01 20:23:48", "2018-03-01 20:23:48", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205935", "1", "2018-03-01 20:23:57", "2018-03-01 20:23:57", "", "Type Kuta (2)", "", "inherit", "open", "closed", "", "type-kuta-2", "", "", "2018-03-01 20:23:57", "2018-03-01 20:23:57", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205936", "1", "2018-03-01 20:24:05", "2018-03-01 20:24:05", "", "Type Kuta (3)", "", "inherit", "open", "closed", "", "type-kuta-3", "", "", "2018-03-01 20:24:05", "2018-03-01 20:24:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205937", "1", "2018-03-01 20:24:12", "2018-03-01 20:24:12", "", "Type Kuta (4)", "", "inherit", "open", "closed", "", "type-kuta-4", "", "", "2018-03-01 20:24:12", "2018-03-01 20:24:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205938", "1", "2018-03-01 20:24:19", "2018-03-01 20:24:19", "", "Type Kuta (5)", "", "inherit", "open", "closed", "", "type-kuta-5", "", "", "2018-03-01 20:24:19", "2018-03-01 20:24:19", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205939", "1", "2018-03-01 20:24:27", "2018-03-01 20:24:27", "", "Type Kuta (6)", "", "inherit", "open", "closed", "", "type-kuta-6", "", "", "2018-03-01 20:24:27", "2018-03-01 20:24:27", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205940", "1", "2018-03-01 20:24:35", "2018-03-01 20:24:35", "", "Type Kuta (7)", "", "inherit", "open", "closed", "", "type-kuta-7", "", "", "2018-03-01 20:24:35", "2018-03-01 20:24:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205941", "1", "2018-03-01 20:24:43", "2018-03-01 20:24:43", "", "Type Kuta (8)", "", "inherit", "open", "closed", "", "type-kuta-8", "", "", "2018-03-01 20:24:43", "2018-03-01 20:24:43", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205942", "1", "2018-03-01 20:24:50", "2018-03-01 20:24:50", "", "Type Kuta (9)", "", "inherit", "open", "closed", "", "type-kuta-9", "", "", "2018-03-01 20:24:50", "2018-03-01 20:24:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205943", "1", "2018-03-01 20:24:58", "2018-03-01 20:24:58", "", "Type Kuta (10)", "", "inherit", "open", "closed", "", "type-kuta-10", "", "", "2018-03-01 20:24:58", "2018-03-01 20:24:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205944", "1", "2018-03-01 20:25:05", "2018-03-01 20:25:05", "", "Type Kuta (11)", "", "inherit", "open", "closed", "", "type-kuta-11", "", "", "2018-03-01 20:25:05", "2018-03-01 20:25:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205945", "1", "2018-03-01 20:25:13", "2018-03-01 20:25:13", "", "Type Kuta (12)", "", "inherit", "open", "closed", "", "type-kuta-12", "", "", "2018-03-01 20:25:13", "2018-03-01 20:25:13", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205946", "1", "2018-03-01 20:25:21", "2018-03-01 20:25:21", "", "Type Kuta (13)", "", "inherit", "open", "closed", "", "type-kuta-13", "", "", "2018-03-01 20:25:21", "2018-03-01 20:25:21", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205947", "1", "2018-03-01 20:29:58", "2018-03-01 20:29:58", "", "matoa (1)", "", "inherit", "open", "closed", "", "matoa-1", "", "", "2018-03-01 20:29:58", "2018-03-01 20:29:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205948", "1", "2018-03-01 20:30:04", "2018-03-01 20:30:04", "", "matoa (2)", "", "inherit", "open", "closed", "", "matoa-2", "", "", "2018-03-01 20:30:04", "2018-03-01 20:30:04", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205949", "1", "2018-03-01 20:30:13", "2018-03-01 20:30:13", "", "matoa (3)", "", "inherit", "open", "closed", "", "matoa-3", "", "", "2018-03-01 20:30:13", "2018-03-01 20:30:13", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205950", "1", "2018-03-01 20:30:23", "2018-03-01 20:30:23", "", "matoa (4)", "", "inherit", "open", "closed", "", "matoa-4", "", "", "2018-03-01 20:30:23", "2018-03-01 20:30:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205951", "1", "2018-03-01 20:30:30", "2018-03-01 20:30:30", "", "matoa (5)", "", "inherit", "open", "closed", "", "matoa-5", "", "", "2018-03-01 20:30:30", "2018-03-01 20:30:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205952", "1", "2018-03-01 20:30:38", "2018-03-01 20:30:38", "", "matoa (6)", "", "inherit", "open", "closed", "", "matoa-6", "", "", "2018-03-01 20:30:38", "2018-03-01 20:30:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205953", "1", "2018-03-01 20:30:44", "2018-03-01 20:30:44", "", "matoa (7)", "", "inherit", "open", "closed", "", "matoa-7", "", "", "2018-03-01 20:30:44", "2018-03-01 20:30:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205954", "1", "2018-03-01 20:30:52", "2018-03-01 20:30:52", "", "matoa (8)", "", "inherit", "open", "closed", "", "matoa-8", "", "", "2018-03-01 20:30:52", "2018-03-01 20:30:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205955", "1", "2018-03-01 20:30:59", "2018-03-01 20:30:59", "", "matoa (9)", "", "inherit", "open", "closed", "", "matoa-9", "", "", "2018-03-01 20:30:59", "2018-03-01 20:30:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205956", "1", "2018-03-01 20:31:05", "2018-03-01 20:31:05", "", "matoa (10)", "", "inherit", "open", "closed", "", "matoa-10", "", "", "2018-03-01 20:31:05", "2018-03-01 20:31:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205957", "1", "2018-03-01 20:31:13", "2018-03-01 20:31:13", "", "matoa (11)", "", "inherit", "open", "closed", "", "matoa-11", "", "", "2018-03-01 20:31:13", "2018-03-01 20:31:13", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205958", "1", "2018-03-01 20:31:20", "2018-03-01 20:31:20", "", "matoa (12)", "", "inherit", "open", "closed", "", "matoa-12", "", "", "2018-03-01 20:31:20", "2018-03-01 20:31:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205959", "1", "2018-03-01 20:31:26", "2018-03-01 20:31:26", "", "matoa (13)", "", "inherit", "open", "closed", "", "matoa-13", "", "", "2018-03-01 20:31:26", "2018-03-01 20:31:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205960", "1", "2018-03-01 20:31:34", "2018-03-01 20:31:34", "", "matoa (14)", "", "inherit", "open", "closed", "", "matoa-14", "", "", "2018-03-01 20:31:34", "2018-03-01 20:31:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205990", "1", "2018-03-02 07:36:14", "2018-03-02 07:36:14", "", "Type New Kuta (15)", "", "inherit", "open", "closed", "", "type-new-kuta-15", "", "", "2018-03-02 07:36:14", "2018-03-02 07:36:14", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205991", "1", "2018-03-02 07:36:55", "2018-03-02 07:36:55", "", "Type New Kuta Lain (1)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-1", "", "", "2018-03-02 07:36:55", "2018-03-02 07:36:55", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205992", "1", "2018-03-02 07:37:05", "2018-03-02 07:37:05", "", "Type New Kuta Lain (2)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-2", "", "", "2018-03-02 07:37:05", "2018-03-02 07:37:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205993", "1", "2018-03-02 07:37:12", "2018-03-02 07:37:12", "", "Type New Kuta Lain (3)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-3", "", "", "2018-03-02 07:37:12", "2018-03-02 07:37:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205994", "1", "2018-03-02 07:37:35", "2018-03-02 07:37:35", "", "Type New Kuta Lain (4)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-4", "", "", "2018-03-02 07:37:35", "2018-03-02 07:37:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205995", "1", "2018-03-02 07:37:54", "2018-03-02 07:37:54", "", "Type New Kuta Lain (5)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-5", "", "", "2018-03-02 07:37:54", "2018-03-02 07:37:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205996", "1", "2018-03-02 07:38:01", "2018-03-02 07:38:01", "", "Type New Kuta Lain (6)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-6", "", "", "2018-03-02 07:38:01", "2018-03-02 07:38:01", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205997", "1", "2018-03-02 07:38:08", "2018-03-02 07:38:08", "", "Type New Kuta Lain (7)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-7", "", "", "2018-03-02 07:38:08", "2018-03-02 07:38:08", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205998", "1", "2018-03-02 07:38:15", "2018-03-02 07:38:15", "", "Type New Kuta Lain (8)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-8", "", "", "2018-03-02 07:38:15", "2018-03-02 07:38:15", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("205999", "1", "2018-03-02 07:38:23", "2018-03-02 07:38:23", "", "Type New Kuta Lain (9)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-9", "", "", "2018-03-02 07:38:23", "2018-03-02 07:38:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206000", "1", "2018-03-02 07:38:29", "2018-03-02 07:38:29", "", "Type New Kuta Lain (10)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-10", "", "", "2018-03-02 07:38:29", "2018-03-02 07:38:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206001", "1", "2018-03-02 07:38:37", "2018-03-02 07:38:37", "", "Type New Kuta Lain (11)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-11", "", "", "2018-03-02 07:38:37", "2018-03-02 07:38:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206002", "1", "2018-03-02 07:38:43", "2018-03-02 07:38:43", "", "Type New Kuta Lain (12)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-12", "", "", "2018-03-02 07:38:43", "2018-03-02 07:38:43", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206003", "1", "2018-03-02 07:38:50", "2018-03-02 07:38:50", "", "Type New Kuta Lain (13)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-13", "", "", "2018-03-02 07:38:50", "2018-03-02 07:38:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206004", "1", "2018-03-02 07:38:57", "2018-03-02 07:38:57", "", "Type New Kuta Lain (14)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-14", "", "", "2018-03-02 07:38:57", "2018-03-02 07:38:57", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206005", "1", "2018-03-02 07:39:05", "2018-03-02 07:39:05", "", "Type New Kuta Lain (15)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-15", "", "", "2018-03-02 07:39:05", "2018-03-02 07:39:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206006", "1", "2018-03-02 07:39:13", "2018-03-02 07:39:13", "", "Type New Kuta Lain (16)", "", "inherit", "open", "closed", "", "type-new-kuta-lain-16", "", "", "2018-03-02 07:39:13", "2018-03-02 07:39:13", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206007", "1", "2018-03-02 07:41:36", "2018-03-02 07:41:36", "", "Type Jimbaran-Ubud (1)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-1", "", "", "2018-03-02 07:41:36", "2018-03-02 07:41:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206008", "1", "2018-03-02 07:45:12", "2018-03-02 07:45:12", "", "Type Jimbaran-Ubud (2)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-2", "", "", "2018-03-02 07:45:12", "2018-03-02 07:45:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206009", "1", "2018-03-02 07:45:22", "2018-03-02 07:45:22", "", "Type Jimbaran-Ubud (3)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-3", "", "", "2018-03-02 07:45:22", "2018-03-02 07:45:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206010", "1", "2018-03-02 07:45:34", "2018-03-02 07:45:34", "", "Type Jimbaran-Ubud (4)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-4", "", "", "2018-03-02 07:45:34", "2018-03-02 07:45:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206011", "1", "2018-03-02 07:45:41", "2018-03-02 07:45:41", "", "Type Jimbaran-Ubud (5)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-5", "", "", "2018-03-02 07:45:41", "2018-03-02 07:45:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206012", "1", "2018-03-02 07:45:50", "2018-03-02 07:45:50", "", "Type Jimbaran-Ubud (6)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-6", "", "", "2018-03-02 07:45:50", "2018-03-02 07:45:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206013", "1", "2018-03-02 07:46:04", "2018-03-02 07:46:04", "", "Type Jimbaran-Ubud (7)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-7", "", "", "2018-03-02 07:46:04", "2018-03-02 07:46:04", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206014", "1", "2018-03-02 07:46:12", "2018-03-02 07:46:12", "", "Type Jimbaran-Ubud (8)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-8", "", "", "2018-03-02 07:46:12", "2018-03-02 07:46:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206015", "1", "2018-03-02 07:46:26", "2018-03-02 07:46:26", "", "Type Jimbaran-Ubud (9)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-9", "", "", "2018-03-02 07:46:26", "2018-03-02 07:46:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206016", "1", "2018-03-02 07:46:34", "2018-03-02 07:46:34", "", "Type Jimbaran-Ubud (10)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-10", "", "", "2018-03-02 07:46:34", "2018-03-02 07:46:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206017", "1", "2018-03-02 07:46:42", "2018-03-02 07:46:42", "", "Type Jimbaran-Ubud (11)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-11", "", "", "2018-03-02 07:46:42", "2018-03-02 07:46:42", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206018", "1", "2018-03-02 07:46:51", "2018-03-02 07:46:51", "", "Type Jimbaran-Ubud (12)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-12", "", "", "2018-03-02 07:46:51", "2018-03-02 07:46:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206019", "1", "2018-03-02 07:46:59", "2018-03-02 07:46:59", "", "Type Jimbaran-Ubud (13)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-13", "", "", "2018-03-02 07:46:59", "2018-03-02 07:46:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206020", "1", "2018-03-02 07:47:10", "2018-03-02 07:47:10", "", "Type Jimbaran-Ubud (14)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-14", "", "", "2018-03-02 07:47:10", "2018-03-02 07:47:10", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206021", "1", "2018-03-02 07:47:22", "2018-03-02 07:47:22", "", "Type Jimbaran-Ubud (15)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-15", "", "", "2018-03-02 07:47:22", "2018-03-02 07:47:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206022", "1", "2018-03-02 07:47:31", "2018-03-02 07:47:31", "", "Type Jimbaran-Ubud (16)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-16", "", "", "2018-03-02 07:47:31", "2018-03-02 07:47:31", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206023", "1", "2018-03-02 07:47:41", "2018-03-02 07:47:41", "", "Type Jimbaran-Ubud (17)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-17", "", "", "2018-03-02 07:47:41", "2018-03-02 07:47:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206024", "1", "2018-03-02 07:47:58", "2018-03-02 07:47:58", "", "Type Jimbaran-Ubud (18)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-18", "", "", "2018-03-02 07:47:58", "2018-03-02 07:47:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206025", "1", "2018-03-02 07:48:10", "2018-03-02 07:48:10", "", "Type Jimbaran-Ubud (19)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-19", "", "", "2018-03-02 07:48:10", "2018-03-02 07:48:10", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206026", "1", "2018-03-02 07:48:22", "2018-03-02 07:48:22", "", "Type Jimbaran-Ubud (20)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-20", "", "", "2018-03-02 07:48:22", "2018-03-02 07:48:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206027", "1", "2018-03-02 07:48:32", "2018-03-02 07:48:32", "", "Type Jimbaran-Ubud (21)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-21", "", "", "2018-03-02 07:48:32", "2018-03-02 07:48:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206028", "1", "2018-03-02 07:48:47", "2018-03-02 07:48:47", "", "Type Jimbaran-Ubud (22)", "", "inherit", "open", "closed", "", "type-jimbaran-ubud-22", "", "", "2018-03-02 07:48:47", "2018-03-02 07:48:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206029", "1", "2018-03-02 07:49:24", "2018-03-02 07:49:24", "", "Type Jimbaran (1)", "", "inherit", "open", "closed", "", "type-jimbaran-1", "", "", "2018-03-02 07:49:24", "2018-03-02 07:49:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206030", "1", "2018-03-02 07:49:38", "2018-03-02 07:49:38", "", "Type Jimbaran (2)", "", "inherit", "open", "closed", "", "type-jimbaran-2", "", "", "2018-03-02 07:49:38", "2018-03-02 07:49:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206031", "1", "2018-03-02 07:49:46", "2018-03-02 07:49:46", "", "Type Jimbaran (3)", "", "inherit", "open", "closed", "", "type-jimbaran-3", "", "", "2018-03-02 07:49:46", "2018-03-02 07:49:46", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206032", "1", "2018-03-02 07:49:54", "2018-03-02 07:49:54", "", "Type Jimbaran (4)", "", "inherit", "open", "closed", "", "type-jimbaran-4", "", "", "2018-03-02 07:49:54", "2018-03-02 07:49:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206033", "1", "2018-03-02 07:50:02", "2018-03-02 07:50:02", "", "Type Jimbaran (5)", "", "inherit", "open", "closed", "", "type-jimbaran-5", "", "", "2018-03-02 07:50:02", "2018-03-02 07:50:02", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206034", "1", "2018-03-02 07:50:12", "2018-03-02 07:50:12", "", "Type Jimbaran (6)", "", "inherit", "open", "closed", "", "type-jimbaran-6", "", "", "2018-03-02 07:50:12", "2018-03-02 07:50:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206035", "1", "2018-03-02 07:50:20", "2018-03-02 07:50:20", "", "Type Jimbaran (7)", "", "inherit", "open", "closed", "", "type-jimbaran-7", "", "", "2018-03-02 07:50:20", "2018-03-02 07:50:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206036", "1", "2018-03-02 07:50:27", "2018-03-02 07:50:27", "", "Type Jimbaran (8)", "", "inherit", "open", "closed", "", "type-jimbaran-8", "", "", "2018-03-02 07:50:27", "2018-03-02 07:50:27", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206037", "1", "2018-03-02 07:50:37", "2018-03-02 07:50:37", "", "Type Jimbaran (9)", "", "inherit", "open", "closed", "", "type-jimbaran-9", "", "", "2018-03-02 07:50:37", "2018-03-02 07:50:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206038", "1", "2018-03-02 07:50:55", "2018-03-02 07:50:55", "", "Type Jimbaran (10)", "", "inherit", "open", "closed", "", "type-jimbaran-10", "", "", "2018-03-02 07:50:55", "2018-03-02 07:50:55", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206039", "1", "2018-03-02 07:51:09", "2018-03-02 07:51:09", "", "Type Jimbaran (11)", "", "inherit", "open", "closed", "", "type-jimbaran-11", "", "", "2018-03-02 07:51:09", "2018-03-02 07:51:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206040", "1", "2018-03-02 07:51:25", "2018-03-02 07:51:25", "", "Type Jimbaran (12)", "", "inherit", "open", "closed", "", "type-jimbaran-12", "", "", "2018-03-02 07:51:25", "2018-03-02 07:51:25", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206041", "1", "2018-03-02 07:51:42", "2018-03-02 07:51:42", "", "Type Sanur (1)", "", "inherit", "open", "closed", "", "type-sanur-1", "", "", "2018-03-02 07:51:42", "2018-03-02 07:51:42", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206042", "1", "2018-03-02 07:51:50", "2018-03-02 07:51:50", "", "Type Sanur (2)", "", "inherit", "open", "closed", "", "type-sanur-2", "", "", "2018-03-02 07:51:50", "2018-03-02 07:51:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206043", "1", "2018-03-02 07:51:58", "2018-03-02 07:51:58", "", "Type Sanur (3)", "", "inherit", "open", "closed", "", "type-sanur-3", "", "", "2018-03-02 07:51:58", "2018-03-02 07:51:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206044", "1", "2018-03-02 07:52:08", "2018-03-02 07:52:08", "", "Type Sanur (4)", "", "inherit", "open", "closed", "", "type-sanur-4", "", "", "2018-03-02 07:52:08", "2018-03-02 07:52:08", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206045", "1", "2018-03-02 07:52:18", "2018-03-02 07:52:18", "", "Type Sanur (5)", "", "inherit", "open", "closed", "", "type-sanur-5", "", "", "2018-03-02 07:52:18", "2018-03-02 07:52:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206046", "1", "2018-03-02 07:52:26", "2018-03-02 07:52:26", "", "Type Sanur (6)", "", "inherit", "open", "closed", "", "type-sanur-6", "", "", "2018-03-02 07:52:26", "2018-03-02 07:52:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206047", "1", "2018-03-02 07:52:36", "2018-03-02 07:52:36", "", "Type Sanur (7)", "", "inherit", "open", "closed", "", "type-sanur-7", "", "", "2018-03-02 07:52:36", "2018-03-02 07:52:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206048", "1", "2018-03-02 07:52:45", "2018-03-02 07:52:45", "", "Type Sanur (8)", "", "inherit", "open", "closed", "", "type-sanur-8", "", "", "2018-03-02 07:52:45", "2018-03-02 07:52:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206049", "1", "2018-03-02 07:52:52", "2018-03-02 07:52:52", "", "Type Sanur (9)", "", "inherit", "open", "closed", "", "type-sanur-9", "", "", "2018-03-02 07:52:52", "2018-03-02 07:52:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206050", "1", "2018-03-02 07:53:01", "2018-03-02 07:53:01", "", "Type Sanur (10)", "", "inherit", "open", "closed", "", "type-sanur-10", "", "", "2018-03-03 06:30:04", "2018-03-03 06:30:04", "", "55", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206098", "1", "2018-03-03 05:38:08", "2018-03-03 05:38:08", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-03 05:38:08\"\n    }\n}", "", "", "trash", "closed", "closed", "", "8761d215-814f-4d2a-9d23-491b39abd1d5", "", "", "2018-03-03 05:38:08", "2018-03-03 05:38:08", "", "0", "http://panbilresidence.com/8761d215-814f-4d2a-9d23-491b39abd1d5/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206056", "1", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "", "Shop", "", "publish", "closed", "closed", "", "shop", "", "", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "", "0", "http://panbilresidence.com/shop/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206057", "1", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "[woocommerce_cart]", "Cart", "", "publish", "closed", "closed", "", "cart", "", "", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "", "0", "http://panbilresidence.com/cart/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206058", "1", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "[woocommerce_checkout]", "Checkout", "", "publish", "closed", "closed", "", "checkout", "", "", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "", "0", "http://panbilresidence.com/checkout/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206059", "1", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "[woocommerce_my_account]", "My account", "", "publish", "closed", "closed", "", "my-account", "", "", "2018-03-02 23:10:58", "2018-03-02 23:10:58", "", "0", "http://panbilresidence.com/my-account/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206060", "1", "2018-03-03 00:38:11", "2018-03-03 00:38:11", "Product description content", "Matoa", "Product short description content", "publish", "open", "closed", "", "matoa", "", "", "2018-03-03 01:06:02", "2018-03-03 01:06:02", "", "0", "http://panbilresidence.com/?post_type=product&#038;p=206060", "0", "product", "", "0");
INSERT INTO `wpj1_posts` VALUES("206064", "1", "2018-03-03 00:58:58", "2018-03-03 00:58:58", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop _builder_version=\"3.0.96\" type=\"recent\" columns_number=\"0\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 00:58:58", "2018-03-03 00:58:58", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206061", "1", "2018-03-02 23:28:20", "2018-03-02 23:28:20", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_shop _builder_version=\"3.0.96\" type=\"recent\" columns_number=\"0\" orderby=\"menu_order\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-02 23:28:20", "2018-03-02 23:28:20", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206067", "1", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "[WPL sf_select_listing=\"9\"]", "For Sale", "", "publish", "closed", "closed", "", "for-sale", "", "", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "", "0", "http://panbilresidence.com/for-sale/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206063", "1", "2018-03-03 00:48:38", "2018-03-03 00:48:38", "<p>This is where your description of this product would go.</p>\n", "Sample Item", "", "publish", "closed", "closed", "", "sample-item", "", "", "2018-03-03 00:48:38", "2018-03-03 00:48:38", "", "0", "http://panbilresidence.com/?post_type=product&#038;p=206063", "0", "product", "", "0");
INSERT INTO `wpj1_posts` VALUES("206066", "1", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "[WPL]", "Properties", "", "publish", "closed", "closed", "", "properties", "", "", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "", "0", "http://panbilresidence.com/properties/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206068", "1", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "[WPL sf_select_listing=\"10\"]", "For Rent", "", "publish", "closed", "closed", "", "for-rent", "", "", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "", "0", "http://panbilresidence.com/for-rent/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206069", "1", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "[WPL sf_select_listing=\"12\"]", "Vacation Rental", "", "publish", "closed", "closed", "", "vacation-rental", "", "", "2018-03-03 01:22:04", "2018-03-03 01:22:04", "", "0", "http://panbilresidence.com/vacation-rental/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206070", "1", "2018-03-03 01:33:45", "2018-03-03 01:33:45", "", "Matoa", "", "publish", "closed", "closed", "", "matoa", "", "", "2018-03-03 01:56:42", "2018-03-03 01:56:42", "", "0", "http://panbilresidence.com/?post_type=property&#038;p=206070", "0", "property", "", "0");
INSERT INTO `wpj1_posts` VALUES("206071", "1", "2018-03-03 02:02:53", "2018-03-03 02:02:53", "", "Rental", "", "publish", "closed", "closed", "", "rental", "", "", "2018-03-03 02:45:28", "2018-03-03 02:45:28", "", "0", "http://panbilresidence.com/?page_id=206071", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206072", "1", "2018-03-03 02:02:53", "2018-03-03 02:02:53", "", "Rental", "", "inherit", "closed", "closed", "", "206071-revision-v1", "", "", "2018-03-03 02:02:53", "2018-03-03 02:02:53", "", "206071", "http://panbilresidence.com/206071-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206073", "1", "2018-03-03 02:10:40", "2018-03-03 02:10:40", "", "Matoa", "", "publish", "open", "closed", "", "matoa", "", "", "2018-03-03 03:10:59", "2018-03-03 03:10:59", "", "0", "http://panbilresidence.com/?post_type=rental&#038;p=206073", "0", "rental", "", "0");
INSERT INTO `wpj1_posts` VALUES("206075", "1", "2018-03-03 02:15:09", "2018-03-03 02:15:09", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code _builder_version=\"3.0.96\"][listing post_type=\"rental\"]&lt;!-- [et_pb_line_break_holder] --&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 02:15:09", "2018-03-03 02:15:09", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206076", "1", "2018-03-03 03:32:58", "2018-03-03 03:32:58", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\" custom_css_blurb_image=\"margin-bottom: 0;\"]\r\n\r\n3 Bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 03:32:58", "2018-03-03 03:32:58", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206077", "1", "2018-03-03 03:46:07", "2018-03-03 03:46:07", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\" custom_css_blurb_image=\"margin-bottom: 0;\"]\r\n\r\n3 Bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\" custom_css_blurb_image=\"margin-bottom: 0;\"]\r\n\r\n3 Bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\" custom_css_blurb_image=\"margin-bottom: 0;\"]\r\n\r\n3 Bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 03:46:07", "2018-03-03 03:46:07", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206079", "1", "2018-03-03 03:55:36", "2018-03-03 03:55:36", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" icon_placement=\"left\" body_text_align=\"left\" custom_margin=\"-20px|||\" custom_padding=\"|||\" title=\"3 Bedroom\"]<br />\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_css_blurb_image=\"margin-bottom: 0;\"]3 Bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_css_blurb_image=\"margin-bottom: 0;\"]3 Bedroom\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 03:55:36", "2018-03-03 03:55:36", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206082", "1", "2018-03-03 03:58:32", "2018-03-03 03:58:32", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 03:58:32", "2018-03-03 03:58:32", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206081", "1", "2018-03-03 03:57:57", "2018-03-03 03:57:57", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>The Villas</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] [/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] [/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] [/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Features</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] [/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] [/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] [/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1><p>Don\'t be shy. Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] [/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] [/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] [/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_css_blurb_image=\"margin-bottom: 0;\"]<p>3 Bedroom</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] [/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"18px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_css_blurb_image=\"margin-bottom: 0;\"]<p>3 Bedroom</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 03:57:57", "2018-03-03 03:57:57", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206106", "1", "2018-03-03 06:07:24", "2018-03-03 06:07:24", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_button _builder_version=\"3.0.96\" button_text=\"More details\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" custom_margin=\"30px|||\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_button _builder_version=\"3.0.96\" button_text=\"More details\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" custom_margin=\"30px|||\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_button _builder_version=\"3.0.96\" button_text=\"More details\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" custom_margin=\"30px|||\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 06:07:24", "2018-03-03 06:07:24", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206086", "1", "2018-03-03 04:34:20", "2018-03-03 04:34:20", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore. [/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"] The Villas [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"] In the Spotlight [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"] Features [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"] Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"] Hours of Operation [/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] <strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span> [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] <strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span> [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] <span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span> [/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions! [/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"] Dialogue is an essential part of any script [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 04:34:20", "2018-03-03 04:34:20", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206084", "1", "2018-03-03 04:02:34", "2018-03-03 04:02:34", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-20px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 04:02:34", "2018-03-03 04:02:34", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206087", "1", "2018-03-03 04:34:39", "2018-03-03 04:34:39", "[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" module_class_1=\"ds-grid\"][et_pb_column type=\"4_4\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" module_class=\"ds-grid-item ds-grid-item1\" /][et_pb_text _builder_version=\"3.0.96\" background_color=\"#e09900\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item2\"]\r\n\r\nds-grid-item ds-grid-item2\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#edf000\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item3\"]\r\n\r\nds-grid-item ds-grid-item3\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#7cda24\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item4\"]\r\n\r\nds-grid-item ds-grid-item4\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#0c71c3\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item5\"]\r\n\r\nds-grid-item ds-grid-item5\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#8300e9\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item6\"]\r\n\r\nds-grid-item ds-grid-item6\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#00cebd\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item7\"]\r\n\r\nds-grid-item ds-grid-item7\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#160019\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item8\"]\r\n\r\nds-grid-item ds-grid-item8\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "test custom grid page", "", "trash", "closed", "closed", "", "test-custom-grid-page__trashed", "", "", "2018-03-03 05:37:53", "2018-03-03 05:37:53", "", "0", "http://panbilresidence.com/?page_id=206087", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206088", "1", "2018-03-03 04:34:39", "2018-03-03 04:34:39", "", "test custom grid page", "", "inherit", "closed", "closed", "", "206087-revision-v1", "", "", "2018-03-03 04:34:39", "2018-03-03 04:34:39", "", "206087", "http://panbilresidence.com/206087-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206089", "1", "2018-03-03 05:16:02", "2018-03-03 05:16:02", "[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" module_class_1=\"ds-grid\"][et_pb_column type=\"4_4\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" module_class=\"ds-grid-item ds-grid-item1\" /][et_pb_text _builder_version=\"3.0.96\" background_color=\"#e09900\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item2\"]\n\n<p>ds-grid-item ds-grid-item2</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#edf000\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item3\"]\n\n<p>ds-grid-item ds-grid-item3</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#7cda24\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item4\"]\n\n<p>ds-grid-item ds-grid-item4</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#0c71c3\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item5\"]\n\n<p>ds-grid-item ds-grid-item5</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#8300e9\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item6\"]\n\n<p>ds-grid-item ds-grid-item6</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#00cebd\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item7\"]\n\n<p>ds-grid-item ds-grid-item7</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#160019\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item8\"]\n\n<p>ds-grid-item ds-grid-item8</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]", "test custom grid page", "", "inherit", "closed", "closed", "", "206087-autosave-v1", "", "", "2018-03-03 05:16:02", "2018-03-03 05:16:02", "", "206087", "http://panbilresidence.com/206087-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206090", "1", "2018-03-03 04:55:14", "2018-03-03 04:55:14", "[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" module_class_1=\"ds-grid\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_color=\"#e02b20\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item1\"]\r\n\r\nds-grid-item ds-grid-item1\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#e09900\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item2\"]\r\n\r\nds-grid-item ds-grid-item2\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#edf000\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item3\"]\r\n\r\nds-grid-item ds-grid-item3\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#7cda24\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item4\"]\r\n\r\nds-grid-item ds-grid-item4\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#0c71c3\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item5\"]\r\n\r\nds-grid-item ds-grid-item5\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#8300e9\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item6\"]\r\n\r\nds-grid-item ds-grid-item6\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#00cebd\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item7\"]\r\n\r\nds-grid-item ds-grid-item7\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#160019\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item8\"]\r\n\r\nds-grid-item ds-grid-item8\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "test custom grid page", "", "inherit", "closed", "closed", "", "206087-revision-v1", "", "", "2018-03-03 04:55:14", "2018-03-03 04:55:14", "", "206087", "http://panbilresidence.com/206087-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206091", "1", "2018-03-03 04:58:04", "2018-03-03 04:58:04", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n.ds-grid {\\n    display: grid;\\n    grid-template-columns: repeat(6, auto);\\n    grid-template-rows: repeat(3, 200px);\\n}\\n\\n.ds-grid-item1 {\\n    grid-column: 1 / 2;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item2 {\\n    grid-column: 2 / 3;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item3 {\\n    grid-column: 3 / 4;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item4 {\\n    grid-column: 4 / 7;\\n    grid-row: 1 / 3;\\n}\\n\\n.ds-grid-item5 {\\n    grid-column: 1 / 4;\\n    grid-row: 2 / 4;\\n}\\n\\n.ds-grid-item6 {\\n    grid-column: 4 / 5;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item7 {\\n    grid-column: 5 / 6;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item8 {\\n    grid-column: 6 / 7;\\n    grid-row: 3 / 4;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-03 04:58:04\"\n    }\n}", "", "", "trash", "closed", "closed", "", "3b4358f4-69b3-4c7f-b998-36692051241d", "", "", "2018-03-03 04:58:04", "2018-03-03 04:58:04", "", "0", "http://panbilresidence.com/?p=206091", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206092", "1", "2018-03-03 04:58:04", "2018-03-03 04:58:04", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n.ds-grid {\n    display: grid;\n    grid-template-columns: repeat(6, auto);\n    grid-template-rows: repeat(3, 200px);\n}\n\n.ds-grid-item1 {\n    grid-column: 1 / 2;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item2 {\n    grid-column: 2 / 3;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item3 {\n    grid-column: 3 / 4;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item4 {\n    grid-column: 4 / 7;\n    grid-row: 1 / 3;\n}\n\n.ds-grid-item5 {\n    grid-column: 1 / 4;\n    grid-row: 2 / 4;\n}\n\n.ds-grid-item6 {\n    grid-column: 4 / 5;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item7 {\n    grid-column: 5 / 6;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item8 {\n    grid-column: 6 / 7;\n    grid-row: 3 / 4;\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-03 04:58:04", "2018-03-03 04:58:04", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206093", "1", "2018-03-03 04:59:22", "2018-03-03 04:59:22", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n.ds-grid {\\n    display: grid;\\n    grid-template-columns: repeat(6, auto);\\n    grid-template-rows: repeat(3, 200px);\\n}\\n\\n.ds-grid-item1 {\\n    grid-column: 1 / 2;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item2 {\\n    grid-column: 2 / 3;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item3 {\\n    grid-column: 3 / 4;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item4 {\\n    grid-column: 4 / 7;\\n    grid-row: 1 / 3;\\n}\\n\\n.ds-grid-item5 {\\n    grid-column: 1 / 4;\\n    grid-row: 2 / 4;\\n}\\n\\n.ds-grid-item6 {\\n    grid-column: 4 / 5;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item7 {\\n    grid-column: 5 / 6;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item8 {\\n    grid-column: 6 / 7;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item {\\n    margin: 0;\\n}\\n\\n@media all and (min-width: 981px) {\\n .et_pb_gutters3 .et_pb_column_4_4 .ds-grid-item.et_pb_module {\\n margin-bottom: 0 !important;\\n }\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-03 04:59:22\"\n    }\n}", "", "", "trash", "closed", "closed", "", "f527614d-63ae-424b-9dfd-b7e10f926a8f", "", "", "2018-03-03 04:59:22", "2018-03-03 04:59:22", "", "0", "http://panbilresidence.com/f527614d-63ae-424b-9dfd-b7e10f926a8f/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206094", "1", "2018-03-03 04:59:22", "2018-03-03 04:59:22", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n.ds-grid {\n    display: grid;\n    grid-template-columns: repeat(6, auto);\n    grid-template-rows: repeat(3, 200px);\n}\n\n.ds-grid-item1 {\n    grid-column: 1 / 2;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item2 {\n    grid-column: 2 / 3;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item3 {\n    grid-column: 3 / 4;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item4 {\n    grid-column: 4 / 7;\n    grid-row: 1 / 3;\n}\n\n.ds-grid-item5 {\n    grid-column: 1 / 4;\n    grid-row: 2 / 4;\n}\n\n.ds-grid-item6 {\n    grid-column: 4 / 5;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item7 {\n    grid-column: 5 / 6;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item8 {\n    grid-column: 6 / 7;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item {\n    margin: 0;\n}\n\n@media all and (min-width: 981px) {\n .et_pb_gutters3 .et_pb_column_4_4 .ds-grid-item.et_pb_module {\n margin-bottom: 0 !important;\n }\n}", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-03 04:59:22", "2018-03-03 04:59:22", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206095", "1", "2018-03-03 05:00:58", "2018-03-03 05:00:58", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n.ds-grid {\\n    display: grid;\\n    grid-template-columns: repeat(6, auto);\\n    grid-template-rows: repeat(3, 200px);\\n}\\n\\n.ds-grid-item1 {\\n    grid-column: 1 / 2;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item2 {\\n    grid-column: 2 / 3;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item3 {\\n    grid-column: 3 / 4;\\n    grid-row: 1 / 2;\\n}\\n\\n.ds-grid-item4 {\\n    grid-column: 4 / 7;\\n    grid-row: 1 / 3;\\n}\\n\\n.ds-grid-item5 {\\n    grid-column: 1 / 4;\\n    grid-row: 2 / 4;\\n}\\n\\n.ds-grid-item6 {\\n    grid-column: 4 / 5;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item7 {\\n    grid-column: 5 / 6;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item8 {\\n    grid-column: 6 / 7;\\n    grid-row: 3 / 4;\\n}\\n\\n.ds-grid-item {\\n    margin: 0;\\n\\t  padding: 20px;\\n    display: flex;\\n    flex-direction: column;\\n    justify-content: center;\\n}\\n\\n@media all and (min-width: 981px) {\\n .et_pb_gutters3 .et_pb_column_4_4 .ds-grid-item.et_pb_module {\\n margin-bottom: 0 !important;\\n }\\n}\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-03 05:00:58\"\n    }\n}", "", "", "trash", "closed", "closed", "", "efd30514-587a-4301-85d3-6f94b0b55a5c", "", "", "2018-03-03 05:00:58", "2018-03-03 05:00:58", "", "0", "http://panbilresidence.com/?p=206095", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206099", "1", "2018-03-03 05:38:08", "2018-03-03 05:38:08", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-03 05:38:08", "2018-03-03 05:38:08", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206096", "1", "2018-03-03 05:00:58", "2018-03-03 05:00:58", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n.ds-grid {\n    display: grid;\n    grid-template-columns: repeat(6, auto);\n    grid-template-rows: repeat(3, 200px);\n}\n\n.ds-grid-item1 {\n    grid-column: 1 / 2;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item2 {\n    grid-column: 2 / 3;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item3 {\n    grid-column: 3 / 4;\n    grid-row: 1 / 2;\n}\n\n.ds-grid-item4 {\n    grid-column: 4 / 7;\n    grid-row: 1 / 3;\n}\n\n.ds-grid-item5 {\n    grid-column: 1 / 4;\n    grid-row: 2 / 4;\n}\n\n.ds-grid-item6 {\n    grid-column: 4 / 5;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item7 {\n    grid-column: 5 / 6;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item8 {\n    grid-column: 6 / 7;\n    grid-row: 3 / 4;\n}\n\n.ds-grid-item {\n    margin: 0;\n	  padding: 20px;\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n}\n\n@media all and (min-width: 981px) {\n .et_pb_gutters3 .et_pb_column_4_4 .ds-grid-item.et_pb_module {\n margin-bottom: 0 !important;\n }\n}\n\n", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-03 05:00:58", "2018-03-03 05:00:58", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206097", "1", "2018-03-03 05:04:11", "2018-03-03 05:04:11", "[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" module_class_1=\"ds-grid\"][et_pb_column type=\"4_4\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" module_class=\"ds-grid-item ds-grid-item1\" /][et_pb_text _builder_version=\"3.0.96\" background_color=\"#e09900\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item2\"]\r\n\r\nds-grid-item ds-grid-item2\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#edf000\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item3\"]\r\n\r\nds-grid-item ds-grid-item3\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#7cda24\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item4\"]\r\n\r\nds-grid-item ds-grid-item4\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#0c71c3\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item5\"]\r\n\r\nds-grid-item ds-grid-item5\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#8300e9\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item6\"]\r\n\r\nds-grid-item ds-grid-item6\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#00cebd\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item7\"]\r\n\r\nds-grid-item ds-grid-item7\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_color=\"#160019\" background_layout=\"light\" module_class=\"ds-grid-item ds-grid-item8\"]\r\n\r\nds-grid-item ds-grid-item8\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "test custom grid page", "", "inherit", "closed", "closed", "", "206087-revision-v1", "", "", "2018-03-03 05:04:11", "2018-03-03 05:04:11", "", "206087", "http://panbilresidence.com/206087-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206115", "1", "2018-03-03 06:43:51", "2018-03-03 06:43:51", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button _builder_version=\"3.0.96\" button_text=\"More details\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button _builder_version=\"3.0.96\" button_text=\"More details\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\" /][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button _builder_version=\"3.0.96\" button_text=\"More details\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 06:43:51", "2018-03-03 06:43:51", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206109", "1", "2018-03-03 06:17:06", "2018-03-03 06:17:06", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" background_color=\"#132c47\"][et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>Featured Products</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"right\" show_bottom_space=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>Recent Products</h1>\r\n[/et_pb_text][et_pb_shop type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#283139\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"right\" show_bottom_space=\"on\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "test page", "", "trash", "closed", "closed", "", "test-page__trashed", "", "", "2018-03-03 06:19:10", "2018-03-03 06:19:10", "", "0", "http://panbilresidence.com/?page_id=206109", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206771", "1", "2018-03-23 08:47:15", "2018-03-23 08:47:15", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-03-23 08:47:15", "2018-03-23 08:47:15", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206769", "1", "2018-03-23 08:46:03", "2018-03-23 08:46:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-03-23 08:46:03", "2018-03-23 08:46:03", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206112", "1", "2018-03-03 06:18:12", "2018-03-03 06:18:12", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" background_color=\"#132c47\"][et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>Featured Products</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"right\" show_bottom_space=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>Recent Products</h1>\r\n[/et_pb_text][et_pb_shop type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#283139\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"right\" show_bottom_space=\"on\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "test page", "", "inherit", "closed", "closed", "", "206109-revision-v1", "", "", "2018-03-03 06:18:12", "2018-03-03 06:18:12", "", "206109", "http://panbilresidence.com/206109-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206110", "1", "2018-03-03 06:17:06", "2018-03-03 06:17:06", "[et_pb_section bb_built=\"1\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1 style=\"font-size: 52px;\">Product Features</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Strategy\" url_new_window=\"off\" image=\"https://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "test page", "", "inherit", "closed", "closed", "", "206109-revision-v1", "", "", "2018-03-03 06:17:06", "2018-03-03 06:17:06", "", "206109", "http://panbilresidence.com/206109-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206111", "1", "2018-03-03 06:18:18", "2018-03-03 06:18:18", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" background_color=\"#132c47\"][et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>Featured Products</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"right\" show_bottom_space=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>Recent Products</h1>\r\n[/et_pb_text][et_pb_shop type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#283139\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" module_alignment=\"center\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"left\" show_bottom_space=\"on\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\" animation_style=\"slide\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" animation_direction=\"right\" show_bottom_space=\"on\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "test page", "", "inherit", "closed", "closed", "", "206109-autosave-v1", "", "", "2018-03-03 06:18:18", "2018-03-03 06:18:18", "", "206109", "http://panbilresidence.com/206109-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206118", "1", "2018-03-03 07:31:07", "2018-03-03 07:31:07", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:31:07", "2018-03-03 07:31:07", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206120", "1", "2018-03-03 07:34:34", "2018-03-03 07:34:34", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:34:34", "2018-03-03 07:34:34", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206122", "1", "2018-03-03 07:36:11", "2018-03-03 07:36:11", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:36:11", "2018-03-03 07:36:11", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206126", "1", "2018-03-03 07:46:14", "2018-03-03 07:46:14", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:46:14", "2018-03-03 07:46:14", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206124", "1", "2018-03-03 07:38:57", "2018-03-03 07:38:57", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:38:57", "2018-03-03 07:38:57", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206127", "1", "2018-03-03 07:47:16", "2018-03-03 07:47:16", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:47:16", "2018-03-03 07:47:16", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206129", "1", "2018-03-03 07:56:59", "2018-03-03 07:56:59", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:56:59", "2018-03-03 07:56:59", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206128", "1", "2018-03-03 07:48:18", "2018-03-03 07:48:18", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#f2f2f2\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 07:48:18", "2018-03-03 07:48:18", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206133", "1", "2018-03-03 09:08:51", "2018-03-03 09:08:51", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 09:08:51", "2018-03-03 09:08:51", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206130", "1", "2018-03-03 08:00:01", "2018-03-03 08:00:01", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" subhead_font_color=\"#bebebe\" _builder_version=\"3.0.96\" title_font=\"Playfair Display||||\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font=\"Montserrat||||\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" text_font=\"||||\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.77\" title_font=\"Montserrat|on||on|\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_font=\"Playfair Display||||\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 08:00:01", "2018-03-03 08:00:01", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206180", "1", "2018-03-05 01:39:41", "2018-03-05 01:39:41", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider show_arrows=\"off\" _builder_version=\"3.0.96\" auto=\"on\" body_font=\"||||||||\" header_font=\"||||||||\" custom_padding=\"280px|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/<span itemprop=\"bestRating\">10</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]<p><span>According to 10 guests</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"|||\" custom_margin=\"||5px|\"]<h4>Villa Matoa Description</h4>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<p><span>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 01:39:41", "2018-03-05 01:39:41", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206182", "1", "2018-03-05 01:42:08", "2018-03-05 01:42:08", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider show_arrows=\"off\" _builder_version=\"3.0.96\" auto=\"on\" body_font=\"||||||||\" header_font=\"||||||||\" custom_padding=\"280px|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/<span itemprop=\"bestRating\">10</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]<p><span>According to 10 guests</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"|||\" custom_margin=\"||5px|\"]<h4>Villa Matoa Description</h4>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<p><span>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 01:42:08", "2018-03-05 01:42:08", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206192", "1", "2018-03-05 03:33:43", "2018-03-05 03:33:43", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n.ten-columns .et_pb_module {width: 10%; float: left;}\\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\\n.six-columns .et_pb_module {width: 16.66%; float: left;}\\n.five-columns .et_pb_module {width: 20%; float: left;}\\n\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-05 03:33:43\"\n    }\n}", "", "", "trash", "closed", "closed", "", "a9fdddc1-37ed-4dc4-8e85-91a92d6fc52f", "", "", "2018-03-05 03:33:43", "2018-03-05 03:33:43", "", "0", "http://panbilresidence.com/a9fdddc1-37ed-4dc4-8e85-91a92d6fc52f/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206184", "1", "2018-03-05 01:42:34", "2018-03-05 01:42:34", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" auto=\"on\" body_font=\"||||||||\" header_font=\"||||||||\" custom_padding=\"280px|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/<span itemprop=\"bestRating\">10</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]<p><span>According to 10 guests</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"|||\" custom_margin=\"||5px|\"]<h4>Villa Matoa Description</h4>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<p><span>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 01:42:34", "2018-03-05 01:42:34", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206135", "1", "2018-03-03 09:20:14", "2018-03-03 09:20:14", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:20:14", "2018-03-03 09:20:14", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206136", "1", "2018-03-03 09:20:28", "2018-03-03 09:20:28", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:20:28", "2018-03-03 09:20:28", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206137", "1", "2018-03-03 09:20:42", "2018-03-03 09:20:42", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:20:42", "2018-03-03 09:20:42", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206139", "1", "2018-03-03 09:21:44", "2018-03-03 09:21:44", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:21:44", "2018-03-03 09:21:44", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206138", "1", "2018-03-03 09:21:31", "2018-03-03 09:21:31", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:21:31", "2018-03-03 09:21:31", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206140", "1", "2018-03-03 09:21:56", "2018-03-03 09:21:56", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:21:56", "2018-03-03 09:21:56", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206831", "1", "2018-03-26 06:04:51", "2018-03-26 06:04:51", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-26 06:04:51", "2018-03-26 06:04:51", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206141", "1", "2018-03-03 09:22:23", "2018-03-03 09:22:23", "[et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "PSR Footer", "", "inherit", "closed", "closed", "", "205456-revision-v1", "", "", "2018-03-03 09:22:23", "2018-03-03 09:22:23", "", "205456", "http://panbilresidence.com/205456-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206142", "1", "2018-03-03 09:22:28", "2018-03-03 09:22:28", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"]<img class=\"wp-image-38 alignnone size-full\" src=\"wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"865\" height=\"605\" /> [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"]<img class=\"wp-image-82 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"478\" height=\"471\" /> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nVillas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"color: #353e44; background: white;\">Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents.  </span></span></p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"On-Site Maintenance &amp; Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\">Our Maintenance team </span><span style=\"font-family: \'Arial\',\'sans-serif\';\">is<span style=\"color: #353e44; background: white;\"> always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</span></span></p>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1><em>A Place I Call Home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\" background_layout=\"light\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" background_layout=\"light\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-03 09:22:28", "2018-03-03 09:22:28", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206467", "1", "2018-03-11 16:42:11", "2018-03-11 16:42:11", "[et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" saved_tabs=\"all\" fullwidth=\"off\" orientation=\"landscape\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" template_type=\"module\"]\n\n<br />\n\n[/et_pb_gallery]", "Villa Type Facilities Fix", "", "publish", "closed", "closed", "", "villa-type-facilities-fix", "", "", "2018-03-11 16:42:11", "2018-03-11 16:42:11", "", "0", "http://panbilresidence.com/et_pb_layout/villa-type-facilities-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206149", "1", "2018-03-03 10:06:55", "2018-03-03 10:06:55", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 10:06:55", "2018-03-03 10:06:55", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206147", "1", "2018-03-03 10:02:36", "2018-03-03 10:02:36", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 10:02:36", "2018-03-03 10:02:36", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206144", "1", "2018-03-03 09:54:45", "2018-03-03 09:54:45", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 09:54:45", "2018-03-03 09:54:45", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206143", "1", "2018-03-03 09:35:20", "2018-03-03 09:35:20", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 09:35:20", "2018-03-03 09:35:20", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206148", "1", "2018-03-03 10:04:42", "2018-03-03 10:04:42", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 10:04:42", "2018-03-03 10:04:42", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206146", "1", "2018-03-03 10:00:46", "2018-03-03 10:00:46", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 10:00:46", "2018-03-03 10:00:46", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206145", "1", "2018-03-03 09:56:45", "2018-03-03 09:56:45", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_font=\"Montserrat||||\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font=\"Playfair Display||||\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 09:56:45", "2018-03-03 09:56:45", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206201", "1", "2018-03-05 04:27:28", "2018-03-05 04:27:28", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/matoa/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-05 04:27:28", "2018-03-05 04:27:28", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206150", "1", "2018-03-03 10:07:56", "2018-03-03 10:07:56", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" header_text_align=\"center\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" background_layout=\"light\" /][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-03 10:07:56", "2018-03-03 10:07:56", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206153", "1", "2018-03-03 10:20:22", "2018-03-03 10:20:22", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-03 10:20:22", "2018-03-03 10:20:22", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206520", "1", "2018-03-17 15:57:54", "2018-03-17 15:57:54", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n<em>[hotel_booking_search]</em>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 15:57:54", "2018-03-17 15:57:54", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206525", "1", "2018-03-17 16:13:05", "2018-03-17 16:13:05", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:13:05", "2018-03-17 16:13:05", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206155", "1", "2018-03-03 10:23:51", "2018-03-03 10:23:51", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-03 10:23:51", "2018-03-03 10:23:51", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206154", "1", "2018-03-03 10:22:32", "2018-03-03 10:22:32", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-03 10:22:32", "2018-03-03 10:22:32", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206156", "1", "2018-03-04 23:35:39", "2018-03-04 23:35:39", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\n\n<p>Our Story</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\n\n<h1>Welcome To Panbil Service Residence</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span></p>\n<p><span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\n\n<p>Only the Best</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\n\n<h1>Fully Furnished, Wonderfully Living</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>\n\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\n\n<p>Testimonials</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\n\n<h1>What People are Saying</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\n\n<h1>“A Great Find”</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" background_layout=\"light\"]\n\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"</p>\n<p><span style=\"color: #1f1f1f;\"> Divi</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\n\n<h1>“Fabulous food &amp; flawless service”</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\n\n<p>\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"</p>\n<p><span style=\"color: #1f1f1f;\"> Bloom</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\n\n<h1>“Another successful experience”</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\n\n<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"</p>\n<p><span style=\"color: #1f1f1f;\"> Extra</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\n\n<h1>\"Speechless\"</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\n\n<p>\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"</p>\n<p><span style=\"color: #1f1f1f;\"> Monarch</span></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\n\n<p>Don\'t Miss</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\n\n<h1>Our News And Events</h1>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\n\n<p>Hours of Operation</p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\n\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\n\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\n\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\n\n<h1>Drop Us a Line</h1>\n<p>Don\'t be shy. Let us know if you have any questions!</p>\n\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\n\n<p>&nbsp;</p>\n\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\n\n<p>Dialogue is an essential part of any script</p>\n\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" template_type=\"\"][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-autosave-v1", "", "", "2018-03-04 23:35:39", "2018-03-04 23:35:39", "", "45", "http://panbilresidence.com/45-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206159", "1", "2018-03-03 10:29:51", "2018-03-03 10:29:51", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" custom_padding_tablet=\"0px||0px|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-03 10:29:51", "2018-03-03 10:29:51", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206158", "1", "2018-03-03 10:27:25", "2018-03-03 10:27:25", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font=\"Playfair Display||||\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat|on||on|\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_font=\"Playfair Display||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"30,29\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"18px\" header_text_color=\"#1f1f1f\" body_font=\"Montserrat||||\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"Montserrat|on||on|\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" use_border_color=\"on\" border_width=\"0px\" box_shadow_color=\"rgba(0,0,0,0.3)\" box_shadow_style=\"none\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.77\" text_font=\"Playfair Display||||\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.77\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"2px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.77\" header_font=\"Montserrat||||\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" custom_padding_tablet=\"0px||0px|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-03 10:27:25", "2018-03-03 10:27:25", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206161", "1", "2018-03-03 10:36:24", "2018-03-03 10:36:24", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|n", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-03 10:36:24", "2018-03-03 10:36:24", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206160", "1", "2018-03-03 10:34:29", "2018-03-03 10:34:29", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-03 10:34:29", "2018-03-03 10:34:29", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206162", "1", "2018-03-03 10:37:10", "2018-03-03 10:37:10", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-03 10:37:10", "2018-03-03 10:37:10", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206167", "1", "2018-03-03 10:43:39", "2018-03-03 10:43:39", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-03-03 10:43:39", "2018-03-03 10:43:39", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206165", "1", "2018-03-03 10:42:19", "2018-03-03 10:42:19", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" text_font_size=\"12px\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font_size=\"12px\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-03-03 10:42:19", "2018-03-03 10:42:19", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206166", "1", "2018-03-03 10:43:04", "2018-03-03 10:43:04", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row _builder_version=\"3.0.96\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_color_2=\"#ffffff\"][et_pb_column type=\"2_3\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nEnquiry\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.96\" show_divider=\"on\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" text_font_size=\"13px\"]\r\n<h1>Reservations</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font_size=\"13px\"]\r\n\r\nThis is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" always_center_on_mobile=\"on\" force_fullwidth=\"off\" show_bottom_space=\"on\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-03-03 10:43:04", "2018-03-03 10:43:04", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206766", "1", "2018-03-23 08:44:00", "2018-03-23 08:44:00", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-03-23 08:44:00", "2018-03-23 08:44:00", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206168", "1", "2018-03-03 10:49:16", "2018-03-03 10:49:16", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Contact Us\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-07.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Get in Touch</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nContact\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nJl. Jendral Ahmad Yani, Muka Kuning\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nBatam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" background_layout=\"dark\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2018-03-03 10:49:16", "2018-03-03 10:49:16", "", "47", "http://panbilresidence.com/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206169", "1", "2018-03-03 11:58:32", "2018-03-03 11:58:32", "{\n    \"et_divi[primary_nav_font]\": {\n        \"value\": \"Didact Gothic\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-03 11:58:32\"\n    }\n}", "", "", "trash", "closed", "closed", "", "12a17809-25e1-4d50-8caf-6334c8386b51", "", "", "2018-03-03 11:58:32", "2018-03-03 11:58:32", "", "0", "http://panbilresidence.com/12a17809-25e1-4d50-8caf-6334c8386b51/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206170", "1", "2018-03-03 11:59:08", "2018-03-03 11:59:08", "{\n    \"et_divi[secondary_nav_font]\": {\n        \"value\": \"Didact Gothic\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-03 11:59:08\"\n    }\n}", "", "", "trash", "closed", "closed", "", "0d22b565-d11e-4a2a-98af-fd1d9eead969", "", "", "2018-03-03 11:59:08", "2018-03-03 11:59:08", "", "0", "http://panbilresidence.com/?p=206170", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206172", "1", "2018-03-04 06:06:55", "2018-03-04 06:06:55", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" custom_padding_tablet=\"50px|0|50px|0\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"Our Services\" background_layout=\"dark\" text_orientation=\"center\" header_fullscreen=\"on\" header_scroll_down=\"on\" scroll_down_icon=\"%%0%%\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" button_one_text=\"View Menu\" button_two_text=\"Reservation\" background_overlay_color=\"rgba(31,31,31,0.8)\" _builder_version=\"3.0.96\" title_font_size=\"72px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-02.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_text_size=\"15px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"#c39d63\" button_two_border_color=\"#c39d63\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Montserrat|||on|\" button_two_use_icon=\"off\" button_two_letter_spacing_hover=\"1px\" custom_button_one=\"on\" button_one_text_size=\"15px\" button_one_text_color=\"#ffffff\" button_one_border_color=\"#ffffff\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Montserrat|||on|\" button_one_use_icon=\"off\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"1px\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" image_orientation=\"center\" content_orientation=\"center\" button_two_icon_placement=\"right\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Welcome To Royal\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"20%||20%|\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_1=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOur Story\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Welcome To Panbil Service Residence</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. </span>\r\n\r\n<span style=\"font-size: 17px;\">Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/food_produce_235-e1506468905186.jpg\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nOnly the Best\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Fully Furnished, Wonderfully Living</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][et_pb_button button_text=\"View Items\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Testominals\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"50px|0|50px|0\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTestimonials\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What People are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonials\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“A Great Find”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Divi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Fabulous food &amp; flawless service”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat. \"\r\n\r\n<span style=\"color: #1f1f1f;\"> Bloom</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>“Another successful experience”</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eu ante eu lectus ornare porta.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Extra</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/stars.png\" always_center_on_mobile=\"off\" _builder_version=\"3.0.77\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"left\" header_font_size=\"24px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h1>\"Speechless\"</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fold\" animation_direction=\"top\" locked=\"off\" background_layout=\"light\"]\r\n\r\n\"Nunc molestie eros nec eros auctor, a dapibus diam iaculis. Aliquam erat volutpat.\"\r\n\r\n<span style=\"color: #1f1f1f;\"> Monarch</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our News &amp; Events\" background_color=\"rgba(0,0,0,0.03)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nDon\'t Miss\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"60px\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>Our News And Events</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_pagination=\"off\" _builder_version=\"3.0.96\" header_text_color=\"#1f1f1f\" body_font_size=\"15px\" body_text_color=\"#999999\" body_line_height=\"1.8em\" meta_font=\"|700||on|||||\" meta_font_size=\"11px\" meta_text_color=\"#c39d63\" meta_letter_spacing=\"2px\" meta_line_height=\"1.9em\" pagination_text_color=\"#c39d63\" border_width_all=\"0px\" border_color_all_fullwidth=\"#d8d8d8\" use_border_color=\"on\" show_content=\"off\" show_thumbnail=\"on\" show_more=\"off\" show_categories=\"on\" show_comments=\"on\" use_overlay=\"off\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_letter_spacing_hover=\"2px\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" custom_padding_tablet=\"0px||0px|\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SERVICES", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2018-03-04 06:06:55", "2018-03-04 06:06:55", "", "45", "http://panbilresidence.com/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206178", "1", "2018-03-04 09:06:39", "2018-03-04 09:06:39", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider show_arrows=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" parallax=\"on\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-04 09:06:39", "2018-03-04 09:06:39", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206176", "1", "2018-03-04 06:33:29", "2018-03-04 06:33:29", "[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" show_arrows=\"off\" show_pagination=\"on\" show_inner_shadow=\"off\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" parallax=\"on\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-04 06:33:29", "2018-03-04 06:33:29", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206194", "1", "2018-03-05 03:33:49", "2018-03-05 03:33:49", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"||0px|\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" auto=\"on\" body_font=\"||||||||\" header_font=\"||||||||\" custom_padding=\"280px|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"|||\" custom_margin=\"||5px|\" header_font=\"||||||||\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"one\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%47%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"two\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%47%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"three\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%47%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"four\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%47%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"five\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%47%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 03:33:49", "2018-03-05 03:33:49", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206187", "1", "2018-03-05 01:50:22", "2018-03-05 01:50:22", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" auto=\"on\" body_font=\"||||||||\" header_font=\"||||||||\" custom_padding=\"280px|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/<span itemprop=\"bestRating\">10</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]<p><span>According to 10 guests</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"|||\" custom_margin=\"||5px|\" header_font=\"||||||||\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\"]<h4>Villa Matoa Description</h4>\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p><span>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 01:50:22", "2018-03-05 01:50:22", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206189", "1", "2018-03-05 01:51:21", "2018-03-05 01:51:21", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"||0px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" auto=\"on\" body_font=\"||||||||\" header_font=\"||||||||\" custom_padding=\"280px|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/<span itemprop=\"bestRating\">10</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]<p><span>According to 10 guests</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"|||\" custom_margin=\"||5px|\" header_font=\"||||||||\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\"]<h4>Villa Matoa Description</h4>\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p><span>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 01:51:21", "2018-03-05 01:51:21", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206173", "1", "2018-03-04 06:19:56", "2018-03-04 06:19:56", "[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-1.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-04 06:19:56", "2018-03-04 06:19:56", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206193", "1", "2018-03-05 03:33:43", "2018-03-05 03:33:43", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n.ten-columns .et_pb_module {width: 10%; float: left;}\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\n.six-columns .et_pb_module {width: 16.66%; float: left;}\n.five-columns .et_pb_module {width: 20%; float: left;}\n\n\n", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-05 03:33:43", "2018-03-05 03:33:43", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206847", "1", "2018-03-26 23:02:52", "2018-03-26 23:02:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_align=\"right\" header_3_text_color=\"#c39d63\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Fully furnished villa type with 3 bedroom sets, 2 bathrooms, 1 house kitchen and one beautiful fully durnished lounge.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-26 23:02:52", "2018-03-26 23:02:52", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206199", "1", "2018-03-05 04:16:36", "2018-03-05 04:16:36", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" custom_margin=\"||12px|\"]\r\n\r\nCustomer Review\r\n\r\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n[/et_pb_divider][et_pb_testimonial author=\"Jhon Doe\" job_title=\"Manager\" company_name=\"Elegant Themes\" portrait_url=\"https://www.elegantthemes.com/preview/Divi/wp-content/uploads/2014/04/team-member-1.jpg\" background_color=\"#c39d63\" _builder_version=\"3.0.96\" quote_icon_color=\"#bfbfbf\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molest.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial author=\"Daniel\" job_title=\"Designer\" company_name=\"Elegant Themes\" portrait_url=\"https://www.elegantthemes.com/preview/Divi/wp-content/uploads/2014/04/team-member-4.jpg\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" quote_icon_color=\"#c39d63\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molest.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 04:16:36", "2018-03-05 04:16:36", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206196", "1", "2018-03-05 04:10:49", "2018-03-05 04:10:49", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" custom_margin=\"||12px|\"]<p>Facilities</p>\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]<p>Description of bedroom</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]<p>Description of bathroom</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]<p>Description of kitchen</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" _builder_version=\"3.0.96\" text_orientation=\"center\" icon_color=\"#c39d63\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\"]<p>Description of lounge</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" custom_margin=\"||12px|\"]<p>Customer Review</p>\n[/et_pb_text][et_pb_divider show_divider=\"on\" _builder_version=\"3.0.96\" color=\"#c39d63\" divider_weight=\"3px\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][et_pb_testimonial author=\"Jhon Doe\" job_title=\"Manager\" company_name=\"Elegant Themes\" portrait_url=\"https://www.elegantthemes.com/preview/Divi/wp-content/uploads/2014/04/team-member-1.jpg\" background_color=\"#c39d63\" _builder_version=\"3.0.96\" quote_icon_color=\"#bfbfbf\"]<p><span>Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molest.</span></p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Daniel\" job_title=\"Designer\" company_name=\"Elegant Themes\" portrait_url=\"https://www.elegantthemes.com/preview/Divi/wp-content/uploads/2014/04/team-member-4.jpg\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" quote_icon_color=\"#c39d63\"]<p><span>Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molest.</span></p>\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-05 04:10:49", "2018-03-05 04:10:49", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206209", "1", "2018-03-05 09:04:16", "2018-03-05 09:04:16", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/kuta/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-05 09:04:16", "2018-03-05 09:04:16", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206206", "1", "2018-03-05 08:52:26", "2018-03-05 08:52:26", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "villa type detail", "", "publish", "closed", "closed", "", "villa-type-detail", "", "", "2018-03-05 08:52:26", "2018-03-05 08:52:26", "", "0", "http://panbilresidence.com/et_pb_layout/villa-type-detail/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206849", "1", "2018-03-26 23:05:14", "2018-03-26 23:05:14", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>The beautiful scenery of this type of villa will bring you the real feeling of Kuta, 2 big bedrooms are well furnished with 2 lounges for any occasions, one kitchen and two bathrooms.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "KUTA", "", "inherit", "closed", "closed", "", "205556-revision-v1", "", "", "2018-03-26 23:05:14", "2018-03-26 23:05:14", "", "205556", "http://panbilresidence.com/205556-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206838", "1", "2018-03-26 06:12:49", "2018-03-26 06:12:49", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "KUTA", "", "inherit", "closed", "closed", "", "205556-revision-v1", "", "", "2018-03-26 06:12:49", "2018-03-26 06:12:49", "", "205556", "http://panbilresidence.com/205556-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206480", "1", "2018-03-11 17:12:14", "2018-03-11 17:12:14", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "KUTA", "", "inherit", "closed", "closed", "", "205556-revision-v1", "", "", "2018-03-11 17:12:14", "2018-03-11 17:12:14", "", "205556", "http://panbilresidence.com/205556-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206208", "1", "2018-03-05 09:02:14", "2018-03-05 09:02:14", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/02/MG_6681.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-11.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-13.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-10.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"] According to 10 guests [/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Kuta Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"] Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "KUTA", "", "inherit", "closed", "closed", "", "205556-revision-v1", "", "", "2018-03-05 09:02:14", "2018-03-05 09:02:14", "", "205556", "http://panbilresidence.com/205556-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206855", "1", "2018-03-26 23:13:29", "2018-03-26 23:13:29", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-10.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-6.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa new kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>The New Kuta is completed with 3 special bedrooms, 3 bathrooms, 2 walk in closets, 1 fully equipped kitchen, and one lounge.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 beautiful full size bedrooms</p>[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 comfortable bathrooms</p>[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>2 walk in closets</p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully quipped kitchen</p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 big lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-26 23:13:29", "2018-03-26 23:13:29", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206212", "1", "2018-03-05 09:11:59", "2018-03-05 09:11:59", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"] According to 10 guests [/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"] Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bedroom [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bathroom [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of lounge [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"one\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%236%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"two\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%133%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"three\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%77%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"four\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%114%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][et_pb_blurb _builder_version=\"3.0.96\" title=\"five\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%89%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nthis is column\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-05 09:11:59", "2018-03-05 09:11:59", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206213", "1", "2018-03-05 09:14:32", "2018-03-05 09:14:32", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n.ten-columns .et_pb_module {width: 10%; float: left;}\\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\\n.six-columns .et_pb_module {width: 16.66%; float: left;}\\n.five-columns .et_pb_module {width: 20%; float: left;}\\n\\n@media (max-width: 980px){\\n.ten-columns .et_pb_module {width: 20%;}\\n.nine-columns .et_pb_module {width: 33.3%;}\\n.eight-columns .et_pb_module {width: 25%;}\\n.seven-columns .et_pb_module {width: 25%;}\\n.six-columns .et_pb_module {width: 33.3%;}\\n.five-columns .et_pb_module {width: 33.3%;}\\n}\\n \\n@media all and (max-width: 767px) {\\n.ten-columns .et_pb_module {width: 100%;}\\n.nine-columns .et_pb_module {width: 100%;}\\n.eight-columns .et_pb_module {width: 100%;}\\n.seven-columns .et_pb_module {width: 100%;}\\n.six-columns .et_pb_module {width: 100%;}\\n.five-columns .et_pb_module {width: 100%;}\\n}\\n\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-05 09:14:32\"\n    }\n}", "", "", "trash", "closed", "closed", "", "b5d1f17c-5b12-44fe-815a-78ee89dd6ba0", "", "", "2018-03-05 09:14:32", "2018-03-05 09:14:32", "", "0", "http://panbilresidence.com/b5d1f17c-5b12-44fe-815a-78ee89dd6ba0/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206214", "1", "2018-03-05 09:14:32", "2018-03-05 09:14:32", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n.ten-columns .et_pb_module {width: 10%; float: left;}\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\n.six-columns .et_pb_module {width: 16.66%; float: left;}\n.five-columns .et_pb_module {width: 20%; float: left;}\n\n@media (max-width: 980px){\n.ten-columns .et_pb_module {width: 20%;}\n.nine-columns .et_pb_module {width: 33.3%;}\n.eight-columns .et_pb_module {width: 25%;}\n.seven-columns .et_pb_module {width: 25%;}\n.six-columns .et_pb_module {width: 33.3%;}\n.five-columns .et_pb_module {width: 33.3%;}\n}\n \n@media all and (max-width: 767px) {\n.ten-columns .et_pb_module {width: 100%;}\n.nine-columns .et_pb_module {width: 100%;}\n.eight-columns .et_pb_module {width: 100%;}\n.seven-columns .et_pb_module {width: 100%;}\n.six-columns .et_pb_module {width: 100%;}\n.five-columns .et_pb_module {width: 100%;}\n}\n\n\n", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-05 09:14:32", "2018-03-05 09:14:32", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206216", "1", "2018-03-05 09:18:24", "2018-03-05 09:18:24", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-05 09:18:24", "2018-03-05 09:18:24", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206215", "1", "2018-03-05 09:17:20", "2018-03-05 09:17:20", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-05 09:17:20", "2018-03-05 09:17:20", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206840", "1", "2018-03-26 06:14:26", "2018-03-26 06:14:26", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-10.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-6.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa new kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-26 06:14:26", "2018-03-26 06:14:26", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206494", "1", "2018-03-11 17:55:22", "2018-03-11 17:55:22", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-10.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-6.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa new kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-11 17:55:22", "2018-03-11 17:55:22", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206492", "1", "2018-03-11 17:54:56", "2018-03-11 17:54:56", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-10.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-6.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa new kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-11 17:54:56", "2018-03-11 17:54:56", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206490", "1", "2018-03-11 17:28:55", "2018-03-11 17:28:55", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa new kuta</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa New Kuta Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-11 17:28:55", "2018-03-11 17:28:55", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206217", "1", "2018-03-05 09:28:44", "2018-03-05 09:28:44", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa New Kuta Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "NEW KUTA", "", "inherit", "closed", "closed", "", "205558-revision-v1", "", "", "2018-03-05 09:28:44", "2018-03-05 09:28:44", "", "205558", "http://panbilresidence.com/205558-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206218", "1", "2018-03-05 09:30:05", "2018-03-05 09:30:05", "<p>[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]</p><h1>Villa New Kuta</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]</p><h1 class=\"_1eDWt\">Impressive</h1><h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]</p><p>According to 10 guests</p><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]</p><h4>Villa New Kuta Description</h4><p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]</p><p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]</p><p>Facilities</p><p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]</p><p>Description of bedroom</p><p>[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]</p><p>Description of bathroom</p><p>[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]</p><p>Description of walk in closet</p><p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]</p><p>Description of kitchen</p><p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]</p><p>Description of lounge</p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]</p><p>Hours of Operation</p><p>[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]</p><p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p><p>[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]</p><p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p><p>[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]</p><p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p><p>[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]</p><h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p><p>[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]</p><p>Dialogue is an essential part of any script</p><p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "villa type detail with custom 5 column blurb", "", "publish", "closed", "closed", "", "villa-type-detail-with-custom-5-column-blurb", "", "", "2018-03-05 09:30:05", "2018-03-05 09:30:05", "", "0", "http://panbilresidence.com/et_pb_layout/villa-type-detail-with-custom-5-column-blurb/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206219", "1", "2018-03-05 09:30:33", "2018-03-05 09:30:33", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/kuta/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/new-kuta/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-05 09:30:33", "2018-03-05 09:30:33", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206221", "1", "2018-03-05 09:31:43", "2018-03-05 09:31:43", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/kuta/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/new-kuta/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/sanur/\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-05 09:31:43", "2018-03-05 09:31:43", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206345", "1", "2018-03-08 22:48:59", "2018-03-08 22:48:59", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/jimbaran/\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-08 22:48:59", "2018-03-08 22:48:59", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206501", "1", "2018-03-11 18:10:54", "2018-03-11 18:10:54", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-5.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-12.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa forest house</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-11 18:10:54", "2018-03-11 18:10:54", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206857", "1", "2018-03-26 23:16:28", "2018-03-26 23:16:28", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa sanur</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Sanur Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Villa Sanur is completed with 3 bedrooms, 3 bathrooms, 3 walk in closets, 1 fully equipped in house kitchen, and 1 lounge.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 beautiful fully furnished bedrooms</p>[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 fully equipped bathrooms</p>[/et_pb_blurb][et_pb_blurb title=\"3 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 walk in closets</p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully equipped kitchen</p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully furnished lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "SANUR", "", "inherit", "closed", "closed", "", "205560-revision-v1", "", "", "2018-03-26 23:16:28", "2018-03-26 23:16:28", "", "205560", "http://panbilresidence.com/205560-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206841", "1", "2018-03-26 06:15:09", "2018-03-26 06:15:09", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa sanur</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Sanur Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "SANUR", "", "inherit", "closed", "closed", "", "205560-revision-v1", "", "", "2018-03-26 06:15:09", "2018-03-26 06:15:09", "", "205560", "http://panbilresidence.com/205560-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206498", "1", "2018-03-11 18:05:52", "2018-03-11 18:05:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa sanur</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Sanur Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SANUR", "", "inherit", "closed", "closed", "", "205560-revision-v1", "", "", "2018-03-11 18:05:52", "2018-03-11 18:05:52", "", "205560", "http://panbilresidence.com/205560-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206496", "1", "2018-03-11 18:05:25", "2018-03-11 18:05:25", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Sanur</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Sanur Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa sanur</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Sanur Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SANUR", "", "inherit", "closed", "closed", "", "205560-revision-v1", "", "", "2018-03-11 18:05:25", "2018-03-11 18:05:25", "", "205560", "http://panbilresidence.com/205560-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206224", "1", "2018-03-05 09:36:30", "2018-03-05 09:36:30", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-6.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Sanur Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "SANUR", "", "inherit", "closed", "closed", "", "205560-revision-v1", "", "", "2018-03-05 09:36:30", "2018-03-05 09:36:30", "", "205560", "http://panbilresidence.com/205560-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206447", "1", "2018-03-11 15:15:31", "2018-03-11 15:15:31", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 15:15:31", "2018-03-11 15:15:31", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206446", "1", "2018-03-11 15:13:48", "2018-03-11 15:13:48", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" saved_tabs=\"all\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\" global_module=\"206445\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 15:13:48", "2018-03-11 15:13:48", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206859", "1", "2018-03-26 23:28:31", "2018-03-26 23:28:31", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Jimbaran is completed with 4 bedrooms, 4 bathrooms, 4 walk in closet, one kitchen and one lounge. A big swimming pool in the back of the house completes the house itself.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>4 fully furnished beautiful bedrooms</p>[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>4 fully equipped bathrooms</p>[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>4 walk in closets</p>[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully equipped kitchen</p>[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 fully furnished lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-26 23:28:31", "2018-03-26 23:28:31", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206453", "1", "2018-03-11 15:49:32", "2018-03-11 15:49:32", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_orientation=\"right\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 15:49:32", "2018-03-11 15:49:32", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206445", "1", "2018-03-11 15:01:49", "2018-03-11 15:01:49", "[et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" saved_tabs=\"all\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\" template_type=\"module\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\"][/et_pb_slide][/et_pb_slider]", "villa jimbaran slider", "", "publish", "closed", "closed", "", "villa-jimbaran-slider-2", "", "", "2018-03-11 15:01:49", "2018-03-11 15:01:49", "", "0", "http://panbilresidence.com/et_pb_layout/villa-jimbaran-slider-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206226", "1", "2018-03-05 09:41:13", "2018-03-05 09:41:13", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-11.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-Lain-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-05 09:41:13", "2018-03-05 09:41:13", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206251", "1", "2018-03-08 08:58:09", "2018-03-08 08:58:09", "", "Type Forest House (5)", "", "inherit", "open", "closed", "", "type-forest-house-5", "", "", "2018-03-08 08:58:09", "2018-03-08 08:58:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206252", "1", "2018-03-08 08:58:18", "2018-03-08 08:58:18", "", "Type Forest House (6)", "", "inherit", "open", "closed", "", "type-forest-house-6", "", "", "2018-03-08 08:58:18", "2018-03-08 08:58:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206253", "1", "2018-03-08 08:58:27", "2018-03-08 08:58:27", "", "Type Forest House (7)", "", "inherit", "open", "closed", "", "type-forest-house-7", "", "", "2018-03-08 08:58:27", "2018-03-08 08:58:27", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206254", "1", "2018-03-08 08:58:37", "2018-03-08 08:58:37", "", "Type Forest House (8)", "", "inherit", "open", "closed", "", "type-forest-house-8", "", "", "2018-03-08 08:58:37", "2018-03-08 08:58:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206255", "1", "2018-03-08 08:58:45", "2018-03-08 08:58:45", "", "Type Forest House (9)", "", "inherit", "open", "closed", "", "type-forest-house-9", "", "", "2018-03-08 08:58:45", "2018-03-08 08:58:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206256", "1", "2018-03-08 08:58:54", "2018-03-08 08:58:54", "", "Type Forest House (10)", "", "inherit", "open", "closed", "", "type-forest-house-10", "", "", "2018-03-08 08:58:54", "2018-03-08 08:58:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206257", "1", "2018-03-08 08:59:05", "2018-03-08 08:59:05", "", "Type Forest House (11)", "", "inherit", "open", "closed", "", "type-forest-house-11", "", "", "2018-03-08 08:59:05", "2018-03-08 08:59:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206258", "1", "2018-03-08 08:59:15", "2018-03-08 08:59:15", "", "Type Forest House (12)", "", "inherit", "open", "closed", "", "type-forest-house-12", "", "", "2018-03-08 08:59:15", "2018-03-08 08:59:15", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206259", "1", "2018-03-08 08:59:24", "2018-03-08 08:59:24", "", "Type Forest House (13)", "", "inherit", "open", "closed", "", "type-forest-house-13", "", "", "2018-03-08 08:59:24", "2018-03-08 08:59:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206260", "1", "2018-03-08 08:59:34", "2018-03-08 08:59:34", "", "Type Forest House (14)", "", "inherit", "open", "closed", "", "type-forest-house-14", "", "", "2018-03-08 08:59:34", "2018-03-08 08:59:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206261", "1", "2018-03-08 08:59:43", "2018-03-08 08:59:43", "", "Type Forest House (15)", "", "inherit", "open", "closed", "", "type-forest-house-15", "", "", "2018-03-08 08:59:43", "2018-03-08 08:59:43", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206262", "1", "2018-03-08 08:59:52", "2018-03-08 08:59:52", "", "Type Forest House (16)", "", "inherit", "open", "closed", "", "type-forest-house-16", "", "", "2018-03-08 08:59:52", "2018-03-08 08:59:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206263", "1", "2018-03-08 09:00:03", "2018-03-08 09:00:03", "", "Type Forest House (17)", "", "inherit", "open", "closed", "", "type-forest-house-17", "", "", "2018-03-08 09:00:03", "2018-03-08 09:00:03", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206264", "1", "2018-03-08 09:00:12", "2018-03-08 09:00:12", "", "Type Forest House (18)", "", "inherit", "open", "closed", "", "type-forest-house-18", "", "", "2018-03-08 09:00:12", "2018-03-08 09:00:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-18.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206265", "1", "2018-03-08 09:00:21", "2018-03-08 09:00:21", "", "Type Forest House (19)", "", "inherit", "open", "closed", "", "type-forest-house-19", "", "", "2018-03-08 09:00:21", "2018-03-08 09:00:21", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206266", "1", "2018-03-08 20:45:20", "2018-03-08 20:45:20", "", "Type Studio Deluxe (1)", "", "inherit", "open", "closed", "", "type-studio-deluxe-1", "", "", "2018-03-08 20:45:20", "2018-03-08 20:45:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206267", "1", "2018-03-08 20:45:28", "2018-03-08 20:45:28", "", "Type Studio Deluxe (2)", "", "inherit", "open", "closed", "", "type-studio-deluxe-2", "", "", "2018-03-08 20:45:28", "2018-03-08 20:45:28", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206268", "1", "2018-03-08 20:45:36", "2018-03-08 20:45:36", "", "Type Studio Deluxe (3)", "", "inherit", "open", "closed", "", "type-studio-deluxe-3", "", "", "2018-03-08 20:45:36", "2018-03-08 20:45:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206269", "1", "2018-03-08 20:45:44", "2018-03-08 20:45:44", "", "Type Studio Deluxe (4)", "", "inherit", "open", "closed", "", "type-studio-deluxe-4", "", "", "2018-03-08 20:45:44", "2018-03-08 20:45:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206270", "1", "2018-03-08 20:45:52", "2018-03-08 20:45:52", "", "Type Studio Deluxe (5)", "", "inherit", "open", "closed", "", "type-studio-deluxe-5", "", "", "2018-03-08 20:45:52", "2018-03-08 20:45:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206271", "1", "2018-03-08 20:46:00", "2018-03-08 20:46:00", "", "Type Studio Deluxe (6)", "", "inherit", "open", "closed", "", "type-studio-deluxe-6", "", "", "2018-03-08 20:46:00", "2018-03-08 20:46:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206272", "1", "2018-03-08 20:46:08", "2018-03-08 20:46:08", "", "Type Studio Deluxe (7)", "", "inherit", "open", "closed", "", "type-studio-deluxe-7", "", "", "2018-03-08 20:46:08", "2018-03-08 20:46:08", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206273", "1", "2018-03-08 20:46:16", "2018-03-08 20:46:16", "", "Type Studio Deluxe (8)", "", "inherit", "open", "closed", "", "type-studio-deluxe-8", "", "", "2018-03-08 20:46:16", "2018-03-08 20:46:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206274", "1", "2018-03-08 20:46:24", "2018-03-08 20:46:24", "", "Type Studio Deluxe (9)", "", "inherit", "open", "closed", "", "type-studio-deluxe-9", "", "", "2018-03-08 20:46:24", "2018-03-08 20:46:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206275", "1", "2018-03-08 20:47:40", "2018-03-08 20:47:40", "", "Studio Executive (1)", "", "inherit", "open", "closed", "", "studio-executive-1", "", "", "2018-03-08 20:47:40", "2018-03-08 20:47:40", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206276", "1", "2018-03-08 20:47:47", "2018-03-08 20:47:47", "", "Studio Executive (2)", "", "inherit", "open", "closed", "", "studio-executive-2", "", "", "2018-03-08 20:47:47", "2018-03-08 20:47:47", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206277", "1", "2018-03-08 20:57:41", "2018-03-08 20:57:41", "", "Studio Executive (3)", "", "inherit", "open", "closed", "", "studio-executive-3", "", "", "2018-03-08 20:57:41", "2018-03-08 20:57:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206278", "1", "2018-03-08 20:57:50", "2018-03-08 20:57:50", "", "Studio Executive (4)", "", "inherit", "open", "closed", "", "studio-executive-4", "", "", "2018-03-08 20:57:50", "2018-03-08 20:57:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206279", "1", "2018-03-08 20:57:59", "2018-03-08 20:57:59", "", "Studio Executive (5)", "", "inherit", "open", "closed", "", "studio-executive-5", "", "", "2018-03-08 20:57:59", "2018-03-08 20:57:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206280", "1", "2018-03-08 20:58:07", "2018-03-08 20:58:07", "", "Studio Executive (6)", "", "inherit", "open", "closed", "", "studio-executive-6", "", "", "2018-03-08 20:58:07", "2018-03-08 20:58:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206281", "1", "2018-03-08 20:58:15", "2018-03-08 20:58:15", "", "Studio Executive (7)", "", "inherit", "open", "closed", "", "studio-executive-7", "", "", "2018-03-08 20:58:15", "2018-03-08 20:58:15", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206282", "1", "2018-03-08 20:58:24", "2018-03-08 20:58:24", "", "Studio Executive (8)", "", "inherit", "open", "closed", "", "studio-executive-8", "", "", "2018-03-08 20:58:24", "2018-03-08 20:58:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206283", "1", "2018-03-08 20:58:32", "2018-03-08 20:58:32", "", "Studio Executive (9)", "", "inherit", "open", "closed", "", "studio-executive-9", "", "", "2018-03-08 20:58:32", "2018-03-08 20:58:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206284", "1", "2018-03-08 20:58:40", "2018-03-08 20:58:40", "", "Studio Executive (10)", "", "inherit", "open", "closed", "", "studio-executive-10", "", "", "2018-03-08 20:58:40", "2018-03-08 20:58:40", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206285", "1", "2018-03-08 20:58:48", "2018-03-08 20:58:48", "", "Studio Executive (11)", "", "inherit", "open", "closed", "", "studio-executive-11", "", "", "2018-03-08 20:58:48", "2018-03-08 20:58:48", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206286", "1", "2018-03-08 20:58:59", "2018-03-08 20:58:59", "", "Studio Executive (12)", "", "inherit", "open", "closed", "", "studio-executive-12", "", "", "2018-03-08 20:58:59", "2018-03-08 20:58:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206287", "1", "2018-03-08 21:11:14", "2018-03-08 21:11:14", "", "Type Three Bedroom (1)", "", "inherit", "open", "closed", "", "type-three-bedroom-1", "", "", "2018-03-08 21:11:14", "2018-03-08 21:11:14", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206288", "1", "2018-03-08 21:11:49", "2018-03-08 21:11:49", "", "Type Three Bedroom (2)", "", "inherit", "open", "closed", "", "type-three-bedroom-2", "", "", "2018-03-08 21:11:49", "2018-03-08 21:11:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206289", "1", "2018-03-08 21:11:58", "2018-03-08 21:11:58", "", "Type Three Bedroom (3)", "", "inherit", "open", "closed", "", "type-three-bedroom-3", "", "", "2018-03-08 21:11:58", "2018-03-08 21:11:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206290", "1", "2018-03-08 21:12:05", "2018-03-08 21:12:05", "", "Type Three Bedroom (4)", "", "inherit", "open", "closed", "", "type-three-bedroom-4", "", "", "2018-03-08 21:12:05", "2018-03-08 21:12:05", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206291", "1", "2018-03-08 21:12:14", "2018-03-08 21:12:14", "", "Type Three Bedroom (5)", "", "inherit", "open", "closed", "", "type-three-bedroom-5", "", "", "2018-03-08 21:12:14", "2018-03-08 21:12:14", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206292", "1", "2018-03-08 21:12:22", "2018-03-08 21:12:22", "", "Type Three Bedroom (6)", "", "inherit", "open", "closed", "", "type-three-bedroom-6", "", "", "2018-03-08 21:12:22", "2018-03-08 21:12:22", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206293", "1", "2018-03-08 21:12:29", "2018-03-08 21:12:29", "", "Type Three Bedroom (7)", "", "inherit", "open", "closed", "", "type-three-bedroom-7", "", "", "2018-03-08 21:12:29", "2018-03-08 21:12:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206294", "1", "2018-03-08 21:12:37", "2018-03-08 21:12:37", "", "Type Three Bedroom (8)", "", "inherit", "open", "closed", "", "type-three-bedroom-8", "", "", "2018-03-08 21:12:37", "2018-03-08 21:12:37", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206295", "1", "2018-03-08 21:12:45", "2018-03-08 21:12:45", "", "Type Three Bedroom (9)", "", "inherit", "open", "closed", "", "type-three-bedroom-9", "", "", "2018-03-08 21:12:45", "2018-03-08 21:12:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206296", "1", "2018-03-08 21:12:53", "2018-03-08 21:12:53", "", "Type Three Bedroom (10)", "", "inherit", "open", "closed", "", "type-three-bedroom-10", "", "", "2018-03-08 21:12:53", "2018-03-08 21:12:53", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206297", "1", "2018-03-08 21:13:01", "2018-03-08 21:13:01", "", "Type Three Bedroom (11)", "", "inherit", "open", "closed", "", "type-three-bedroom-11", "", "", "2018-03-08 21:13:01", "2018-03-08 21:13:01", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206298", "1", "2018-03-08 21:13:09", "2018-03-08 21:13:09", "", "Type Three Bedroom (12)", "", "inherit", "open", "closed", "", "type-three-bedroom-12", "", "", "2018-03-08 21:13:09", "2018-03-08 21:13:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206299", "1", "2018-03-08 21:13:17", "2018-03-08 21:13:17", "", "Type Three Bedroom (13)", "", "inherit", "open", "closed", "", "type-three-bedroom-13", "", "", "2018-03-08 21:13:17", "2018-03-08 21:13:17", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206300", "1", "2018-03-08 21:13:25", "2018-03-08 21:13:25", "", "Type Three Bedroom (14)", "", "inherit", "open", "closed", "", "type-three-bedroom-14", "", "", "2018-03-08 21:13:25", "2018-03-08 21:13:25", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206301", "1", "2018-03-08 21:13:35", "2018-03-08 21:13:35", "", "Type Three Bedroom (15)", "", "inherit", "open", "closed", "", "type-three-bedroom-15", "", "", "2018-03-08 21:13:35", "2018-03-08 21:13:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206302", "1", "2018-03-08 21:13:44", "2018-03-08 21:13:44", "", "Type Three Bedroom (16)", "", "inherit", "open", "closed", "", "type-three-bedroom-16", "", "", "2018-03-08 21:13:44", "2018-03-08 21:13:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206303", "1", "2018-03-08 21:13:51", "2018-03-08 21:13:51", "", "Type Three Bedroom (17)", "", "inherit", "open", "closed", "", "type-three-bedroom-17", "", "", "2018-03-08 21:13:51", "2018-03-08 21:13:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206304", "1", "2018-03-08 21:13:59", "2018-03-08 21:13:59", "", "Type Three Bedroom (18)", "", "inherit", "open", "closed", "", "type-three-bedroom-18", "", "", "2018-03-08 21:13:59", "2018-03-08 21:13:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-18.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206305", "1", "2018-03-08 21:14:07", "2018-03-08 21:14:07", "", "Type Three Bedroom (19)", "", "inherit", "open", "closed", "", "type-three-bedroom-19", "", "", "2018-03-08 21:14:07", "2018-03-08 21:14:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206306", "1", "2018-03-08 21:15:07", "2018-03-08 21:15:07", "", "Two Bedroom Deluxe (1)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-1", "", "", "2018-03-08 21:15:07", "2018-03-08 21:15:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206307", "1", "2018-03-08 21:15:16", "2018-03-08 21:15:16", "", "Two Bedroom Deluxe (2)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-2", "", "", "2018-03-08 21:15:16", "2018-03-08 21:15:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206308", "1", "2018-03-08 21:15:24", "2018-03-08 21:15:24", "", "Two Bedroom Deluxe (3)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-3", "", "", "2018-03-08 21:15:24", "2018-03-08 21:15:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206309", "1", "2018-03-08 21:15:33", "2018-03-08 21:15:33", "", "Two Bedroom Deluxe (4)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-4", "", "", "2018-03-08 21:15:33", "2018-03-08 21:15:33", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206310", "1", "2018-03-08 21:15:41", "2018-03-08 21:15:41", "", "Two Bedroom Deluxe (5)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-5", "", "", "2018-03-08 21:15:41", "2018-03-08 21:15:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206311", "1", "2018-03-08 21:15:49", "2018-03-08 21:15:49", "", "Two Bedroom Deluxe (6)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-6", "", "", "2018-03-08 21:15:49", "2018-03-08 21:15:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206312", "1", "2018-03-08 21:15:58", "2018-03-08 21:15:58", "", "Two Bedroom Deluxe (7)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-7", "", "", "2018-03-08 21:15:58", "2018-03-08 21:15:58", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206313", "1", "2018-03-08 21:16:07", "2018-03-08 21:16:07", "", "Two Bedroom Deluxe (8)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-8", "", "", "2018-03-08 21:16:07", "2018-03-08 21:16:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206314", "1", "2018-03-08 21:16:15", "2018-03-08 21:16:15", "", "Two Bedroom Deluxe (9)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-9", "", "", "2018-03-08 21:16:15", "2018-03-08 21:16:15", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206315", "1", "2018-03-08 21:16:23", "2018-03-08 21:16:23", "", "Two Bedroom Deluxe (10)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-10", "", "", "2018-03-08 21:16:23", "2018-03-08 21:16:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206316", "1", "2018-03-08 21:16:32", "2018-03-08 21:16:32", "", "Two Bedroom Deluxe (11)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-11", "", "", "2018-03-08 21:16:32", "2018-03-08 21:16:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206317", "1", "2018-03-08 21:16:41", "2018-03-08 21:16:41", "", "Two Bedroom Deluxe (12)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-12", "", "", "2018-03-08 21:16:41", "2018-03-08 21:16:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206318", "1", "2018-03-08 21:16:50", "2018-03-08 21:16:50", "", "Two Bedroom Deluxe (13)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-13", "", "", "2018-03-08 21:16:50", "2018-03-08 21:16:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206319", "1", "2018-03-08 21:16:59", "2018-03-08 21:16:59", "", "Two Bedroom Deluxe (14)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-14", "", "", "2018-03-08 21:16:59", "2018-03-08 21:16:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206320", "1", "2018-03-08 21:17:08", "2018-03-08 21:17:08", "", "Two Bedroom Deluxe (15)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-15", "", "", "2018-03-08 21:17:08", "2018-03-08 21:17:08", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206321", "1", "2018-03-08 21:17:16", "2018-03-08 21:17:16", "", "Two Bedroom Deluxe (16)", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-16", "", "", "2018-03-08 21:17:16", "2018-03-08 21:17:16", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206322", "1", "2018-03-08 21:20:29", "2018-03-08 21:20:29", "", "Type Two Bedroom Executive (1)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-1", "", "", "2018-03-08 21:20:29", "2018-03-08 21:20:29", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206323", "1", "2018-03-08 21:20:38", "2018-03-08 21:20:38", "", "Type Two Bedroom Executive (2)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-2", "", "", "2018-03-08 21:20:38", "2018-03-08 21:20:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206324", "1", "2018-03-08 21:20:46", "2018-03-08 21:20:46", "", "Type Two Bedroom Executive (3)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-3", "", "", "2018-03-08 21:20:46", "2018-03-08 21:20:46", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206325", "1", "2018-03-08 21:20:54", "2018-03-08 21:20:54", "", "Type Two Bedroom Executive (4)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-4", "", "", "2018-03-08 21:20:54", "2018-03-08 21:20:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206326", "1", "2018-03-08 21:21:06", "2018-03-08 21:21:06", "", "Type Two Bedroom Executive (5)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-5", "", "", "2018-03-08 21:21:06", "2018-03-08 21:21:06", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206327", "1", "2018-03-08 21:21:18", "2018-03-08 21:21:18", "", "Type Two Bedroom Executive (6)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-6", "", "", "2018-03-08 21:21:18", "2018-03-08 21:21:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206328", "1", "2018-03-08 21:21:30", "2018-03-08 21:21:30", "", "Type Two Bedroom Executive (7)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-7", "", "", "2018-03-08 21:21:30", "2018-03-08 21:21:30", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206329", "1", "2018-03-08 21:21:44", "2018-03-08 21:21:44", "", "Type Two Bedroom Executive (8)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-8", "", "", "2018-03-08 21:21:44", "2018-03-08 21:21:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206330", "1", "2018-03-08 21:21:54", "2018-03-08 21:21:54", "", "Type Two Bedroom Executive (9)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-9", "", "", "2018-03-08 21:21:54", "2018-03-08 21:21:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206331", "1", "2018-03-08 21:22:07", "2018-03-08 21:22:07", "", "Type Two Bedroom Executive (10)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-10", "", "", "2018-03-08 21:22:07", "2018-03-08 21:22:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206332", "1", "2018-03-08 21:22:21", "2018-03-08 21:22:21", "", "Type Two Bedroom Executive (11)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-11", "", "", "2018-03-08 21:22:21", "2018-03-08 21:22:21", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206333", "1", "2018-03-08 21:22:33", "2018-03-08 21:22:33", "", "Type Two Bedroom Executive (12)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-12", "", "", "2018-03-08 21:22:33", "2018-03-08 21:22:33", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206334", "1", "2018-03-08 21:22:45", "2018-03-08 21:22:45", "", "Type Two Bedroom Executive (13)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-13", "", "", "2018-03-08 21:22:45", "2018-03-08 21:22:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206335", "1", "2018-03-08 21:22:56", "2018-03-08 21:22:56", "", "Type Two Bedroom Executive (14)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-14", "", "", "2018-03-08 21:22:56", "2018-03-08 21:22:56", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206336", "1", "2018-03-08 21:23:07", "2018-03-08 21:23:07", "", "Type Two Bedroom Executive (15)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-15", "", "", "2018-03-08 21:23:07", "2018-03-08 21:23:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-15.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206337", "1", "2018-03-08 21:23:19", "2018-03-08 21:23:19", "", "Type Two Bedroom Executive (16)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-16", "", "", "2018-03-08 21:23:19", "2018-03-08 21:23:19", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206338", "1", "2018-03-08 21:23:28", "2018-03-08 21:23:28", "", "Type Two Bedroom Executive (17)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-17", "", "", "2018-03-08 21:23:28", "2018-03-08 21:23:28", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206339", "1", "2018-03-08 21:23:38", "2018-03-08 21:23:38", "", "Type Two Bedroom Executive (18)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-18", "", "", "2018-03-08 21:23:38", "2018-03-08 21:23:38", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-18.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206340", "1", "2018-03-08 21:23:49", "2018-03-08 21:23:49", "", "Type Two Bedroom Executive (19)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-19", "", "", "2018-03-08 21:23:49", "2018-03-08 21:23:49", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-19.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206341", "1", "2018-03-08 21:23:59", "2018-03-08 21:23:59", "", "Type Two Bedroom Executive (20)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-20", "", "", "2018-03-08 21:23:59", "2018-03-08 21:23:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206342", "1", "2018-03-08 21:24:11", "2018-03-08 21:24:11", "", "Type Two Bedroom Executive (21)", "", "inherit", "open", "closed", "", "type-two-bedroom-executive-21", "", "", "2018-03-08 21:24:11", "2018-03-08 21:24:11", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206344", "1", "2018-03-08 22:47:48", "2018-03-08 22:47:48", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-08 22:47:48", "2018-03-08 22:47:48", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206357", "1", "2018-03-09 01:27:26", "2018-03-09 01:27:26", "", "Gym", "", "trash", "open", "closed", "", "studio-delux__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206357", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206361", "1", "2018-03-09 01:30:52", "2018-03-09 01:30:52", "", "Gym", "", "inherit", "closed", "closed", "", "206357-revision-v1", "", "", "2018-03-09 01:30:52", "2018-03-09 01:30:52", "", "206357", "http://panbilresidence.com/206357-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206358", "1", "2018-03-09 01:27:26", "2018-03-09 01:27:26", "", "Studio Delux", "", "inherit", "closed", "closed", "", "206357-revision-v1", "", "", "2018-03-09 01:27:26", "2018-03-09 01:27:26", "", "206357", "http://panbilresidence.com/206357-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206359", "1", "2018-03-09 01:27:47", "2018-03-09 01:27:47", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"on\" fullwidth=\"on\" zoom_icon_color=\"#a08a1b\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-09 01:27:47", "2018-03-09 01:27:47", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206360", "1", "2018-03-09 01:30:35", "2018-03-09 01:30:35", "", "Gym", "", "inherit", "closed", "closed", "", "206357-autosave-v1", "", "", "2018-03-09 01:30:35", "2018-03-09 01:30:35", "", "206357", "http://panbilresidence.com/206357-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206362", "1", "2018-03-09 01:31:54", "2018-03-09 01:31:54", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"on\" zoom_icon_color=\"#a08a1b\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-09 01:31:54", "2018-03-09 01:31:54", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206347", "1", "2018-03-08 23:24:06", "2018-03-08 23:24:06", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-5.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-12.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa forest house</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Located on the higher ground of our residential area, The Forest House is everyone\'s favorive place to live in.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 Bedrooms</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>2 Fully Equipped Bathrooms</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully Equipped House Kitchen</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 Fully Furnished Lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "FOREST HOUSE", "", "publish", "closed", "closed", "", "forest-house", "", "", "2018-03-26 23:09:04", "2018-03-26 23:09:04", "", "0", "http://panbilresidence.com/?page_id=206347", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206853", "1", "2018-03-26 23:09:04", "2018-03-26 23:09:04", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-5.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-12.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa forest house</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Located on the higher ground of our residential area, The Forest House is everyone\'s favorive place to live in.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>3 Bedrooms</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>2 Fully Equipped Bathrooms</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>Fully Equipped House Kitchen</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]<p>1 Fully Furnished Lounge</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-26 23:09:04", "2018-03-26 23:09:04", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206351", "1", "2018-03-08 23:25:31", "2018-03-08 23:25:31", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-08 23:25:31", "2018-03-08 23:25:31", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206348", "1", "2018-03-08 23:24:06", "2018-03-08 23:24:06", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"] According to 10 guests [/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"] Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bedroom [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bathroom [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of lounge [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-08 23:24:06", "2018-03-08 23:24:06", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206350", "1", "2018-03-08 23:24:38", "2018-03-08 23:24:38", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-17.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/forest-house/\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_url=\"http://panbilresidence.com/jimbaran/\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-08 23:24:38", "2018-03-08 23:24:38", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206487", "1", "2018-03-11 17:27:04", "2018-03-11 17:27:04", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-5.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-12.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa forest house</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-11 17:27:04", "2018-03-11 17:27:04", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206356", "1", "2018-03-09 01:18:56", "2018-03-09 01:18:56", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" title=\"fascilities\" show_title=\"on\" show_date=\"on\" fullwidth=\"on\" zoom_icon_color=\"#a08a1b\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-09 01:18:56", "2018-03-09 01:18:56", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206839", "1", "2018-03-26 06:13:41", "2018-03-26 06:13:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-5.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-12.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa forest house</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-26 06:13:41", "2018-03-26 06:13:41", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206353", "1", "2018-03-08 23:33:59", "2018-03-08 23:33:59", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-08 23:33:59", "2018-03-08 23:33:59", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206512", "1", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "[hotel_booking_cart]", "Hotel Cart", "", "publish", "closed", "closed", "", "hotel-cart", "", "", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "", "0", "http://panbilresidence.com/hotel-cart/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206774", "1", "2018-03-25 13:35:17", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2018-03-25 13:35:17", "0000-00-00 00:00:00", "", "0", "http://panbilresidence.com/?p=206774", "0", "post", "", "0");
INSERT INTO `wpj1_posts` VALUES("206377", "1", "2018-03-09 02:01:05", "2018-03-09 02:01:05", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"off\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-09 02:01:05", "2018-03-09 02:01:05", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206363", "1", "2018-03-09 01:33:31", "2018-03-09 01:33:31", "", "Kolam Renang", "", "trash", "open", "closed", "", "kolam-renang__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206363", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206364", "1", "2018-03-09 01:33:31", "2018-03-09 01:33:31", "", "Kolam Renang", "", "inherit", "closed", "closed", "", "206363-revision-v1", "", "", "2018-03-09 01:33:31", "2018-03-09 01:33:31", "", "206363", "http://panbilresidence.com/206363-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206365", "1", "2018-03-09 01:35:03", "2018-03-09 01:35:03", "", "Parkiran", "", "trash", "open", "closed", "", "parkiran__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206365", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206366", "1", "2018-03-09 01:35:03", "2018-03-09 01:35:03", "", "Parkiran", "", "inherit", "closed", "closed", "", "206365-revision-v1", "", "", "2018-03-09 01:35:03", "2018-03-09 01:35:03", "", "206365", "http://panbilresidence.com/206365-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206367", "1", "2018-03-09 01:52:42", "2018-03-09 01:52:42", "", "Loundry", "", "trash", "open", "closed", "", "loundry__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206367", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206368", "1", "2018-03-09 01:52:42", "2018-03-09 01:52:42", "", "Loundry", "", "inherit", "closed", "closed", "", "206367-revision-v1", "", "", "2018-03-09 01:52:42", "2018-03-09 01:52:42", "", "206367", "http://panbilresidence.com/206367-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206369", "1", "2018-03-09 01:54:51", "2018-03-09 01:54:51", "", "Local Phone", "", "trash", "open", "closed", "", "local-phone__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206369", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206370", "1", "2018-03-09 01:54:51", "2018-03-09 01:54:51", "", "Local Phone", "", "inherit", "closed", "closed", "", "206369-revision-v1", "", "", "2018-03-09 01:54:51", "2018-03-09 01:54:51", "", "206369", "http://panbilresidence.com/206369-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206371", "1", "2018-03-09 01:56:22", "2018-03-09 01:56:22", "", "BBQ", "", "trash", "open", "closed", "", "bbq__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206371", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206372", "1", "2018-03-09 01:56:22", "2018-03-09 01:56:22", "", "BBQ", "", "inherit", "closed", "closed", "", "206371-revision-v1", "", "", "2018-03-09 01:56:22", "2018-03-09 01:56:22", "", "206371", "http://panbilresidence.com/206371-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206373", "1", "2018-03-09 01:57:05", "2018-03-09 01:57:05", "", "Bar", "", "trash", "open", "closed", "", "bar__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206373", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206374", "1", "2018-03-09 01:57:05", "2018-03-09 01:57:05", "", "Bar", "", "inherit", "closed", "closed", "", "206373-revision-v1", "", "", "2018-03-09 01:57:05", "2018-03-09 01:57:05", "", "206373", "http://panbilresidence.com/206373-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206375", "1", "2018-03-09 01:57:48", "2018-03-09 01:57:48", "", "TV", "", "trash", "open", "closed", "", "tv__trashed", "", "", "2018-03-11 16:43:35", "2018-03-11 16:43:35", "", "0", "http://panbilresidence.com/?post_type=project&#038;p=206375", "0", "project", "", "0");
INSERT INTO `wpj1_posts` VALUES("206376", "1", "2018-03-09 01:57:48", "2018-03-09 01:57:48", "", "TV", "", "inherit", "closed", "closed", "", "206375-revision-v1", "", "", "2018-03-09 01:57:48", "2018-03-09 01:57:48", "", "206375", "http://panbilresidence.com/206375-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206379", "1", "2018-03-09 02:03:54", "2018-03-09 02:03:54", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" _builder_version=\"3.0.96\" template_type=\"section\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"off\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section]", "section villa type facilities", "", "publish", "closed", "closed", "", "section-villa-type-facilities", "", "", "2018-03-09 02:03:54", "2018-03-09 02:03:54", "", "0", "http://panbilresidence.com/et_pb_layout/section-villa-type-facilities/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206485", "1", "2018-03-11 17:16:38", "2018-03-11 17:16:38", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Forest House</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa forest house</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]<p>According to 10 guests</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Forest House Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]<p> </p>[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]<p> </p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-11 17:16:38", "2018-03-11 17:16:38", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206380", "1", "2018-03-09 02:03:59", "2018-03-09 02:03:59", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-2.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-17.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Forest House Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"off\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "FOREST HOUSE", "", "inherit", "closed", "closed", "", "206347-revision-v1", "", "", "2018-03-09 02:03:59", "2018-03-09 02:03:59", "", "206347", "http://panbilresidence.com/206347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206381", "1", "2018-03-09 02:04:42", "2018-03-09 02:04:42", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"on\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-09 02:04:42", "2018-03-09 02:04:42", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206382", "1", "2018-03-09 07:01:44", "2018-03-09 07:01:44", "", "Fasilitas Villa-Club House (1)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-1", "", "", "2018-03-09 07:01:44", "2018-03-09 07:01:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206383", "1", "2018-03-09 07:01:51", "2018-03-09 07:01:51", "", "Fasilitas Villa-Club House (2)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-2", "", "", "2018-03-09 07:01:51", "2018-03-09 07:01:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206384", "1", "2018-03-09 07:02:00", "2018-03-09 07:02:00", "", "Fasilitas Villa-Club House (3)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-3", "", "", "2018-03-09 07:02:00", "2018-03-09 07:02:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206385", "1", "2018-03-09 07:02:09", "2018-03-09 07:02:09", "", "Fasilitas Villa-Club House (4)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-4", "", "", "2018-03-09 07:02:09", "2018-03-09 07:02:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206386", "1", "2018-03-09 07:02:17", "2018-03-09 07:02:17", "", "Fasilitas Villa-Club House (5)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-5", "", "", "2018-03-09 07:02:17", "2018-03-09 07:02:17", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206387", "1", "2018-03-09 07:02:26", "2018-03-09 07:02:26", "", "Fasilitas Villa-Club House (6)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-6", "", "", "2018-03-09 07:02:26", "2018-03-09 07:02:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206388", "1", "2018-03-09 07:02:35", "2018-03-09 07:02:35", "", "Fasilitas Villa-Club House (7)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-7", "", "", "2018-03-09 07:02:35", "2018-03-09 07:02:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206389", "1", "2018-03-09 07:02:44", "2018-03-09 07:02:44", "", "Fasilitas Villa-Club House (9)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-9", "", "", "2018-03-09 07:02:44", "2018-03-09 07:02:44", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206390", "1", "2018-03-09 07:02:53", "2018-03-09 07:02:53", "", "Fasilitas Villa-Club House (10)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-10", "", "", "2018-03-09 07:02:53", "2018-03-09 07:02:53", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206391", "1", "2018-03-09 07:03:02", "2018-03-09 07:03:02", "", "Fasilitas Villa-Club House (11)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-11", "", "", "2018-03-09 07:03:02", "2018-03-09 07:03:02", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206392", "1", "2018-03-09 07:03:11", "2018-03-09 07:03:11", "", "Fasilitas Villa-Club House (12)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-12", "", "", "2018-03-09 07:03:11", "2018-03-09 07:03:11", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206393", "1", "2018-03-09 07:03:21", "2018-03-09 07:03:21", "", "Fasilitas Villa-Club House (13)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-13", "", "", "2018-03-09 07:03:21", "2018-03-09 07:03:21", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206394", "1", "2018-03-09 07:03:32", "2018-03-09 07:03:32", "", "Fasilitas Villa-Club House (14)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-14", "", "", "2018-03-09 07:03:32", "2018-03-09 07:03:32", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-14.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206395", "1", "2018-03-09 07:09:50", "2018-03-09 07:09:50", "", "Fasilitas Villa-Club House (1)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-1-2", "", "", "2018-03-09 07:09:50", "2018-03-09 07:09:50", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-1-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206396", "1", "2018-03-09 07:09:59", "2018-03-09 07:09:59", "", "Fasilitas Villa-Club House (2)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-2-2", "", "", "2018-03-09 07:09:59", "2018-03-09 07:09:59", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206397", "1", "2018-03-09 07:10:10", "2018-03-09 07:10:10", "", "Fasilitas Villa-Club House (3)", "Club House", "inherit", "open", "closed", "", "fasilitas-villa-club-house-3-2", "", "", "2018-03-23 06:52:52", "2018-03-23 06:52:52", "", "43", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-3-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206398", "1", "2018-03-09 07:10:20", "2018-03-09 07:10:20", "", "Fasilitas Villa-Club House (4)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-4-2", "", "", "2018-03-09 07:10:20", "2018-03-09 07:10:20", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-4-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206399", "1", "2018-03-09 07:10:31", "2018-03-09 07:10:31", "", "Fasilitas Villa-Club House (5)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-5-2", "", "", "2018-03-09 07:10:31", "2018-03-09 07:10:31", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-5-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206400", "1", "2018-03-09 07:10:41", "2018-03-09 07:10:41", "", "Fasilitas Villa-Club House (6)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-6-2", "", "", "2018-03-09 07:10:41", "2018-03-09 07:10:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-6-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206401", "1", "2018-03-09 07:10:51", "2018-03-09 07:10:51", "", "Fasilitas Villa-Club House (7)", "Club House", "inherit", "open", "closed", "", "fasilitas-villa-club-house-7-2", "", "", "2018-03-11 16:36:52", "2018-03-11 16:36:52", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-7-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206402", "1", "2018-03-09 07:11:02", "2018-03-09 07:11:02", "", "Fasilitas Villa-Club House (9)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-9-2", "", "", "2018-03-09 07:11:02", "2018-03-09 07:11:02", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-9-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206403", "1", "2018-03-09 07:11:12", "2018-03-09 07:11:12", "", "Fasilitas Villa-Club House (10)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-10-2", "", "", "2018-03-09 07:11:12", "2018-03-09 07:11:12", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-10-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206404", "1", "2018-03-09 07:11:23", "2018-03-09 07:11:23", "", "Fasilitas Villa-Club House (11)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-11-2", "", "", "2018-03-09 07:11:23", "2018-03-09 07:11:23", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-11-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206405", "1", "2018-03-09 07:11:34", "2018-03-09 07:11:34", "", "Fasilitas Villa-Club House (12)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-12-2", "", "", "2018-03-09 07:11:34", "2018-03-09 07:11:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-12-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206406", "1", "2018-03-09 07:11:45", "2018-03-09 07:11:45", "", "Fasilitas Villa-Club House (13)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-13-2", "", "", "2018-03-09 07:11:45", "2018-03-09 07:11:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-13-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206407", "1", "2018-03-09 07:11:54", "2018-03-09 07:11:54", "", "Fasilitas Villa-Club House (14)", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-14-2", "", "", "2018-03-09 07:11:54", "2018-03-09 07:11:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-14-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206408", "1", "2018-03-09 07:12:07", "2018-03-09 07:12:07", "", "Fasilitas Villa-Club House (15)-2", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-15-2", "", "", "2018-03-09 07:12:07", "2018-03-09 07:12:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-15-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206409", "1", "2018-03-09 07:12:24", "2018-03-09 07:12:24", "", "Fasilitas Villa-Club House (16)-2", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-16-2", "", "", "2018-03-09 07:12:24", "2018-03-09 07:12:24", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-16-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206410", "1", "2018-03-09 07:12:35", "2018-03-09 07:12:35", "", "Fasilitas Villa-Club House (17)-2", "", "inherit", "open", "closed", "", "fasilitas-villa-club-house-17-2", "", "", "2018-03-09 07:12:35", "2018-03-09 07:12:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-17-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206411", "1", "2018-03-09 07:14:08", "2018-03-09 07:14:08", "", "Fasilitas Villa-Gym (1)", "", "inherit", "open", "closed", "", "fasilitas-villa-gym-1", "", "", "2018-03-09 07:14:08", "2018-03-09 07:14:08", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Gym-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206412", "1", "2018-03-09 07:14:17", "2018-03-09 07:14:17", "", "Fasilitas Villa-Gym (2)", "Gym", "inherit", "open", "closed", "", "fasilitas-villa-gym-2", "", "", "2018-03-11 16:36:36", "2018-03-11 16:36:36", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Gym-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206413", "1", "2018-03-09 07:14:26", "2018-03-09 07:14:26", "", "Fasilitas Villa-Gym (3)", "", "inherit", "open", "closed", "", "fasilitas-villa-gym-3", "", "", "2018-03-09 07:14:26", "2018-03-09 07:14:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Gym-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206414", "1", "2018-03-09 07:14:36", "2018-03-09 07:14:36", "", "Fasilitas Villa-Gym (4)", "Gym", "inherit", "open", "closed", "", "fasilitas-villa-gym-4", "", "", "2018-03-11 16:36:43", "2018-03-11 16:36:43", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Gym-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206415", "1", "2018-03-09 07:14:46", "2018-03-09 07:14:46", "", "Fasilitas Villa-Gym (5)", "", "inherit", "open", "closed", "", "fasilitas-villa-gym-5", "", "", "2018-03-09 07:14:46", "2018-03-09 07:14:46", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Gym-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206416", "1", "2018-03-09 07:28:17", "2018-03-09 07:28:17", "", "Fasilitas Apartment-Mini Garden (4)", "", "inherit", "open", "closed", "", "fasilitas-apartment-mini-garden-4", "", "", "2018-03-09 07:28:17", "2018-03-09 07:28:17", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206417", "1", "2018-03-09 07:28:26", "2018-03-09 07:28:26", "", "Fasilitas Apartment-Mini Garden (5)", "", "inherit", "open", "closed", "", "fasilitas-apartment-mini-garden-5", "", "", "2018-03-09 07:28:26", "2018-03-09 07:28:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206418", "1", "2018-03-09 07:28:35", "2018-03-09 07:28:35", "", "Fasilitas Apartment-Mini Garden (6)", "", "inherit", "open", "closed", "", "fasilitas-apartment-mini-garden-6", "", "", "2018-03-09 07:28:35", "2018-03-09 07:28:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206419", "1", "2018-03-09 07:28:45", "2018-03-09 07:28:45", "", "Fasilitas Apartment-Mini Garden (1)", "", "inherit", "open", "closed", "", "fasilitas-apartment-mini-garden-1", "", "", "2018-03-09 07:28:45", "2018-03-09 07:28:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206420", "1", "2018-03-09 07:28:54", "2018-03-09 07:28:54", "", "Fasilitas Apartment-Mini Garden (2)", "", "inherit", "open", "closed", "", "fasilitas-apartment-mini-garden-2", "", "", "2018-03-09 07:28:54", "2018-03-09 07:28:54", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206421", "1", "2018-03-09 07:29:03", "2018-03-09 07:29:03", "", "Fasilitas Apartment-Mini Garden (3)", "", "inherit", "open", "closed", "", "fasilitas-apartment-mini-garden-3", "", "", "2018-03-09 07:29:03", "2018-03-09 07:29:03", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206422", "1", "2018-03-09 07:30:21", "2018-03-09 07:30:21", "", "Fasilitas Apartment-Kolam Renang (1)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-1", "", "", "2018-03-09 07:30:21", "2018-03-09 07:30:21", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206423", "1", "2018-03-09 07:30:34", "2018-03-09 07:30:34", "", "Fasilitas Apartment-Kolam Renang (2)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-2", "", "", "2018-03-09 07:30:34", "2018-03-09 07:30:34", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206424", "1", "2018-03-09 07:30:41", "2018-03-09 07:30:41", "", "Fasilitas Apartment-Kolam Renang (3)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-3", "", "", "2018-03-09 07:30:41", "2018-03-09 07:30:41", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206425", "1", "2018-03-09 07:30:51", "2018-03-09 07:30:51", "", "Fasilitas Apartment-Kolam Renang (4)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-4", "", "", "2018-03-09 07:30:51", "2018-03-09 07:30:51", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206426", "1", "2018-03-09 07:31:00", "2018-03-09 07:31:00", "", "Fasilitas Apartment-Kolam Renang (5)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-5", "", "", "2018-03-09 07:31:00", "2018-03-09 07:31:00", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206427", "1", "2018-03-09 07:31:09", "2018-03-09 07:31:09", "", "Fasilitas Apartment-Kolam Renang (6)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-6", "", "", "2018-03-09 07:31:09", "2018-03-09 07:31:09", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206428", "1", "2018-03-09 07:31:18", "2018-03-09 07:31:18", "", "Fasilitas Apartment-Kolam Renang (7)", "", "inherit", "open", "closed", "", "fasilitas-apartment-kolam-renang-7", "", "", "2018-03-09 07:31:18", "2018-03-09 07:31:18", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206429", "1", "2018-03-09 07:32:07", "2018-03-09 07:32:07", "", "Fasilitas Apartment-Gym (1)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-1", "", "", "2018-03-09 07:32:07", "2018-03-09 07:32:07", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206430", "1", "2018-03-09 07:32:17", "2018-03-09 07:32:17", "", "Fasilitas Apartment-Gym (2)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-2", "", "", "2018-03-09 07:32:17", "2018-03-09 07:32:17", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206431", "1", "2018-03-09 07:32:26", "2018-03-09 07:32:26", "", "Fasilitas Apartment-Gym (3)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-3", "", "", "2018-03-09 07:32:26", "2018-03-09 07:32:26", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206432", "1", "2018-03-09 07:32:35", "2018-03-09 07:32:35", "", "Fasilitas Apartment-Gym (4)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-4", "", "", "2018-03-09 07:32:35", "2018-03-09 07:32:35", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206433", "1", "2018-03-09 07:32:45", "2018-03-09 07:32:45", "", "Fasilitas Apartment-Gym (5)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-5", "", "", "2018-03-09 07:32:45", "2018-03-09 07:32:45", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206434", "1", "2018-03-09 07:32:53", "2018-03-09 07:32:53", "", "Fasilitas Apartment-Gym (6)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-6", "", "", "2018-03-09 07:32:53", "2018-03-09 07:32:53", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206435", "1", "2018-03-09 07:33:03", "2018-03-09 07:33:03", "", "Fasilitas Apartment-Gym (7)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-7", "", "", "2018-03-09 07:33:03", "2018-03-09 07:33:03", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206436", "1", "2018-03-09 07:33:13", "2018-03-09 07:33:13", "", "Fasilitas Apartment-Gym (8)", "", "inherit", "open", "closed", "", "fasilitas-apartment-gym-8", "", "", "2018-03-09 07:33:13", "2018-03-09 07:33:13", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206437", "1", "2018-03-11 14:28:18", "2018-03-11 14:28:18", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"off\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 14:28:18", "2018-03-11 14:28:18", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206438", "1", "2018-03-11 14:33:02", "2018-03-11 14:33:02", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" /][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"off\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 14:33:02", "2018-03-11 14:33:02", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206441", "1", "2018-03-11 14:55:05", "2018-03-11 14:55:05", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]According to 10 guests\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"][/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 14:55:05", "2018-03-11 14:55:05", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206439", "1", "2018-03-11 14:37:51", "2018-03-11 14:37:51", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image _builder_version=\"3.0.96\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" /][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.96\" background_color=\"#1f1f1f\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" module_class=\"five-columns\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio _builder_version=\"3.0.96\" show_title=\"on\" show_date=\"off\" fullwidth=\"off\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\" include_categories=\"31\" /][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 14:37:51", "2018-03-11 14:37:51", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206442", "1", "2018-03-11 14:56:01", "2018-03-11 14:56:01", "[et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" saved_tabs=\"all\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\" template_type=\"module\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\"][/et_pb_slide][/et_pb_slider]", "slider villa jimbaran", "", "publish", "closed", "closed", "", "slider-villa-jimbaran", "", "", "2018-03-11 14:56:01", "2018-03-11 14:56:01", "", "0", "http://panbilresidence.com/et_pb_layout/slider-villa-jimbaran/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206547", "1", "2018-03-19 06:25:21", "2018-03-19 06:25:21", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" template_type=\"section\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section]", "slider villa & apartment", "", "publish", "closed", "closed", "", "slider-villa-apartment", "", "", "2018-03-19 06:25:21", "2018-03-19 06:25:21", "", "0", "http://panbilresidence.com/et_pb_layout/slider-villa-apartment/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206458", "1", "2018-03-11 15:59:54", "2018-03-11 15:59:54", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "TV", "", "inherit", "closed", "closed", "", "206375-autosave-v1", "", "", "2018-03-11 15:59:54", "2018-03-11 15:59:54", "", "206375", "http://panbilresidence.com/206375-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206466", "1", "2018-03-11 16:40:36", "2018-03-11 16:40:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 16:40:36", "2018-03-11 16:40:36", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206463", "1", "2018-03-11 16:37:04", "2018-03-11 16:37:04", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_orientation=\"right\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_gallery _builder_version=\"3.0.96\" show_title_and_caption=\"on\" show_pagination=\"on\" fullwidth=\"off\" orientation=\"landscape\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" hover_icon=\"%%51%%\" gallery_ids=\"206412,206414,206401,206397\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 16:37:04", "2018-03-11 16:37:04", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206444", "1", "2018-03-11 14:57:45", "2018-03-11 14:57:45", "[et_pb_slider _builder_version=\"3.0.96\" custom_padding=\"280px|||\" auto=\"on\" saved_tabs=\"all\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\" template_type=\"module\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\"][/et_pb_slide][/et_pb_slider]", "villa jimbaran slider", "", "publish", "closed", "closed", "", "villa-jimbaran-slider", "", "", "2018-03-11 14:57:45", "2018-03-11 14:57:45", "", "0", "http://panbilresidence.com/et_pb_layout/villa-jimbaran-slider/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206450", "1", "2018-03-11 15:21:54", "2018-03-11 15:21:54", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_orientation=\"right\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Jimbaran Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"] \r[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 15:21:54", "2018-03-11 15:21:54", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206448", "1", "2018-03-11 15:16:57", "2018-03-11 15:16:57", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" background_color=\"#ffffff\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 15:16:57", "2018-03-11 15:16:57", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206455", "1", "2018-03-11 15:55:16", "2018-03-11 15:55:16", "{\n    \"custom_css[panbilresidence]\": {\n        \"value\": \"input[type=text],\\ninput[type=email],\\ninput[type=date],\\ntextarea {\\n    width: 100%;\\n    padding: 12px;\\n    border: 1px solid #ccc;\\n    border-radius: 4px;\\n}\\n\\ninput[type=submit] {\\n\\t\\tbackground-color: #c39d63;\\n    border: none;\\n    color: white;\\n    padding: 15px 32px;\\n    text-align: center;\\n    text-decoration: none;\\n    display: inline-block;\\n    font-size: 15px;\\n\\t\\tfloat: right;\\n}\\n\\n.ten-columns .et_pb_module {width: 10%; float: left;}\\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\\n.six-columns .et_pb_module {width: 16.66%; float: left;}\\n.five-columns .et_pb_module {width: 20%; float: left;}\\n\\n@media (max-width: 980px){\\n.ten-columns .et_pb_module {width: 20%;}\\n.nine-columns .et_pb_module {width: 33.3%;}\\n.eight-columns .et_pb_module {width: 25%;}\\n.seven-columns .et_pb_module {width: 25%;}\\n.six-columns .et_pb_module {width: 33.3%;}\\n.five-columns .et_pb_module {width: 33.3%;}\\n}\\n \\n@media all and (max-width: 767px) {\\n.ten-columns .et_pb_module {width: 100%;}\\n.nine-columns .et_pb_module {width: 100%;}\\n.eight-columns .et_pb_module {width: 100%;}\\n.seven-columns .et_pb_module {width: 100%;}\\n.six-columns .et_pb_module {width: 100%;}\\n.five-columns .et_pb_module {width: 100%;}\\n}\\n\\n.et_pb_portfolio_item .et_overlay {\\nz-index: 6;\\n}\\n\\n.et_pb_fullwidth_portfolio .et_pb_portfolio_image h3 {\\ndisplay: inline-block;\\nposition: relative;\\nz-index: 6;\\n}\\n\\n.et_pb_portfolio_item .et_pb_portfolio_image:hover:after {\\ncontent:\\\"\\\";\\nposition: absolute;\\nleft: 0;\\ntop: 0;\\nwidth: 100%;\\nheight: 100%;\\nz-index: 5;\\ndisplay: block;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-11 15:55:16\"\n    }\n}", "", "", "trash", "closed", "closed", "", "3605e478-3f62-4925-9aaf-7182d52eb61a", "", "", "2018-03-11 15:55:16", "2018-03-11 15:55:16", "", "0", "http://panbilresidence.com/?p=206455", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206456", "1", "2018-03-11 15:55:16", "2018-03-11 15:55:16", "input[type=text],\ninput[type=email],\ninput[type=date],\ntextarea {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n}\n\ninput[type=submit] {\n		background-color: #c39d63;\n    border: none;\n    color: white;\n    padding: 15px 32px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 15px;\n		float: right;\n}\n\n.ten-columns .et_pb_module {width: 10%; float: left;}\n.nine-columns .et_pb_module {width: 11.11%; float: left;}\n.eight-columns .et_pb_module {width: 12.5%; float: left;}\n.seven-columns .et_pb_module {width: 14.28%; float: left;}\n.six-columns .et_pb_module {width: 16.66%; float: left;}\n.five-columns .et_pb_module {width: 20%; float: left;}\n\n@media (max-width: 980px){\n.ten-columns .et_pb_module {width: 20%;}\n.nine-columns .et_pb_module {width: 33.3%;}\n.eight-columns .et_pb_module {width: 25%;}\n.seven-columns .et_pb_module {width: 25%;}\n.six-columns .et_pb_module {width: 33.3%;}\n.five-columns .et_pb_module {width: 33.3%;}\n}\n \n@media all and (max-width: 767px) {\n.ten-columns .et_pb_module {width: 100%;}\n.nine-columns .et_pb_module {width: 100%;}\n.eight-columns .et_pb_module {width: 100%;}\n.seven-columns .et_pb_module {width: 100%;}\n.six-columns .et_pb_module {width: 100%;}\n.five-columns .et_pb_module {width: 100%;}\n}\n\n.et_pb_portfolio_item .et_overlay {\nz-index: 6;\n}\n\n.et_pb_fullwidth_portfolio .et_pb_portfolio_image h3 {\ndisplay: inline-block;\nposition: relative;\nz-index: 6;\n}\n\n.et_pb_portfolio_item .et_pb_portfolio_image:hover:after {\ncontent:\"\";\nposition: absolute;\nleft: 0;\ntop: 0;\nwidth: 100%;\nheight: 100%;\nz-index: 5;\ndisplay: block;\n}\n", "panbilresidence", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2018-03-11 15:55:16", "2018-03-11 15:55:16", "", "39", "http://panbilresidence.com/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206464", "1", "2018-03-11 16:38:17", "2018-03-11 16:38:17", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_orientation=\"right\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_gallery _builder_version=\"3.0.96\" show_title_and_caption=\"off\" show_pagination=\"off\" fullwidth=\"off\" orientation=\"landscape\" zoom_icon_color=\"#c39d63\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" hover_icon=\"%%51%%\" gallery_ids=\"206412,206414,206401,206397\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_portfolio fullwidth=\"off\" include_categories=\"31\" show_date=\"off\" zoom_icon_color=\"#c39d63\" _builder_version=\"3.0.96\" portfolio_header_font_size_tablet=\"51\" portfolio_header_line_height_tablet=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "JIMBARAN", "", "inherit", "closed", "closed", "", "205562-revision-v1", "", "", "2018-03-11 16:38:17", "2018-03-11 16:38:17", "", "205562", "http://panbilresidence.com/205562-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206469", "1", "2018-03-11 16:45:26", "2018-03-11 16:45:26", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" template_type=\"section\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section]", "Slider Villa Type Fix", "", "publish", "closed", "closed", "", "slider-villa-type-fix", "", "", "2018-03-11 16:45:26", "2018-03-11 16:45:26", "", "0", "http://panbilresidence.com/et_pb_layout/slider-villa-type-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206805", "1", "2018-03-25 22:34:48", "2018-03-25 22:34:48", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-25 22:34:48", "2018-03-25 22:34:48", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206798", "1", "2018-03-25 22:28:17", "2018-03-25 22:28:17", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-25 22:28:17", "2018-03-25 22:28:17", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206475", "1", "2018-03-11 17:00:49", "2018-03-11 17:00:49", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\" template_type=\"section\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"]\n\n<p> </p>\n\n[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "villa facilities fix", "", "publish", "closed", "closed", "", "villa-facilities-fix", "", "", "2018-03-11 17:00:49", "2018-03-11 17:00:49", "", "0", "http://panbilresidence.com/et_pb_layout/villa-facilities-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206803", "1", "2018-03-25 22:33:51", "2018-03-25 22:33:51", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-11.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-8.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]<h1>Villa Matoa</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_align=\"right\" header_3_text_color=\"#c39d63\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Villa Matoa Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"] \r[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-25 22:33:51", "2018-03-25 22:33:51", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206476", "1", "2018-03-11 17:01:10", "2018-03-11 17:01:10", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-11.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-8.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-13.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_align=\"right\" header_3_text_color=\"#c39d63\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "MATOA", "", "inherit", "closed", "closed", "", "205554-revision-v1", "", "", "2018-03-11 17:01:10", "2018-03-11 17:01:10", "", "205554", "http://panbilresidence.com/205554-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206797", "1", "2018-03-25 22:27:05", "2018-03-25 22:27:05", "[et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" template_type=\"section\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Fullwidth Google Map", "", "publish", "closed", "closed", "", "fullwidth-google-map", "", "", "2018-03-25 22:27:05", "2018-03-25 22:27:05", "", "0", "http://panbilresidence.com/et_pb_layout/fullwidth-google-map/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206477", "1", "2018-03-11 17:02:00", "2018-03-11 17:02:00", "[et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\" template_type=\"section\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\n\n<p>Facilities</p>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"]\n\n<p> </p>\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\n\n<p>Description of bedroom</p>\n\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\n\n<p>Description of bathroom</p>\n\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\n\n<p>Description of walk in closet</p>\n\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\n\n<p>Description of kitchen</p>\n\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\n\n<p>Description of lounge</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Villa Description Fix", "", "publish", "closed", "closed", "", "villa-description-fix", "", "", "2018-03-11 17:02:00", "2018-03-11 17:02:00", "", "0", "http://panbilresidence.com/et_pb_layout/villa-description-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206478", "1", "2018-03-11 17:02:37", "2018-03-11 17:02:37", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" template_type=\"section\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\n\n<h1>Villa Jimbaran</h1>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\n\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\n\n<p>According to 10 guests</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\n\n<h4>Villa Jimbaran Description</h4>\n\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"]\n\n<p> </p>\n\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]\n\n<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Villa desc fix", "", "publish", "closed", "closed", "", "villa-desc-fix", "", "", "2018-03-11 17:02:37", "2018-03-11 17:02:37", "", "0", "http://panbilresidence.com/et_pb_layout/villa-desc-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206483", "1", "2018-03-11 17:14:20", "2018-03-11 17:14:20", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-11 17:14:20", "2018-03-11 17:14:20", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206514", "1", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "[hotel_booking]", "Hotel Booking Search", "", "publish", "closed", "closed", "", "hotel-search", "", "", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "", "0", "http://panbilresidence.com/hotel-search/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206515", "1", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "[hotel_booking_account]", "Hotel Account", "", "publish", "closed", "closed", "", "hotel-account", "", "", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "", "0", "http://panbilresidence.com/hotel-account/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206516", "1", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "Something notices", "Terms and Conditions", "", "publish", "closed", "closed", "", "hotel-term-condition", "", "", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "", "0", "http://panbilresidence.com/hotel-term-condition/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206517", "1", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "[hotel_booking_thankyou]", "Hotel Thank You", "", "publish", "closed", "closed", "", "hotel-thank-you", "", "", "2018-03-17 15:08:53", "2018-03-17 15:08:53", "", "0", "http://panbilresidence.com/hotel-thank-you/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206523", "1", "2018-03-17 16:00:09", "2018-03-17 16:00:09", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>\n<p><em>[hotel_booking_cart]</em></p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:00:09", "2018-03-17 16:00:09", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206519", "1", "2018-03-17 15:54:05", "2018-03-17 15:54:05", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" custom_button_two=\"off\" button_two_icon_placement=\"right\" custom_button_one=\"off\" button_one_icon_placement=\"right\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nIn the Spotlight\r\n\r\n<em>[hotel_booking_checkout]</em>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\" background_layout=\"light\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" background_layout=\"light\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\" url_new_window=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" background_layout=\"light\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 15:54:05", "2018-03-17 15:54:05", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206507", "1", "2018-03-14 07:11:15", "2018-03-14 07:11:15", "[et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" template_type=\"row\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Villas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.\r[/et_pb_blurb][/et_pb_column][/et_pb_row]", "Features(wide variety of villas, environtment, furnished)", "", "publish", "closed", "closed", "", "featureswide-variety-of-villas-environtment-furnished", "", "", "2018-03-14 07:11:15", "2018-03-14 07:11:15", "", "0", "http://panbilresidence.com/et_pb_layout/featureswide-variety-of-villas-environtment-furnished/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206510", "1", "2018-03-14 07:27:26", "2018-03-14 07:27:26", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|56px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-14 07:27:26", "2018-03-14 07:27:26", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206505", "1", "2018-03-14 07:09:33", "2018-03-14 07:09:33", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|0px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Villas are fully furnished with separate living, dining, kitchen and bedroom areas.  The kitchens are extensively equipped, all rooms are fully air-conditioned, and bathrooms are equipped with water heater to ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Gym Facilities\" use_icon=\"on\" font_icon=\"%%267%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24/7 Security Services\" use_icon=\"on\" font_icon=\"%%93%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"color: #353e44; background: white;\">Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents.  </span></span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance & Repair\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\"><span style=\"font-family: \'Arial\',\'sans-serif\'; color: #353e44; background: white;\">Our Maintenance team </span><span style=\"font-family: \'Arial\',\'sans-serif\';\">is<span style=\"color: #353e44; background: white;\"> always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</span></span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(214,214,214,0.32)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-14 07:09:33", "2018-03-14 07:09:33", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206508", "1", "2018-03-14 07:15:24", "2018-03-14 07:15:24", "[et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" template_type=\"row\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row]", "Features(gym, security, maintenance)", "", "publish", "closed", "closed", "", "featuresgym-security-maintenance", "", "", "2018-03-14 07:15:24", "2018-03-14 07:15:24", "", "0", "http://panbilresidence.com/et_pb_layout/featuresgym-security-maintenance/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206509", "1", "2018-03-14 07:26:56", "2018-03-14 07:26:56", "[et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" template_type=\"row\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row]", "Features(Club house, pool, restaurant)", "", "publish", "closed", "closed", "", "featuresclub-house-pool-restaurant", "", "", "2018-03-14 07:26:56", "2018-03-14 07:26:56", "", "0", "http://panbilresidence.com/et_pb_layout/featuresclub-house-pool-restaurant/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206524", "1", "2018-03-17 16:01:42", "2018-03-17 16:01:42", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>\n<p><em>[hotel_booking]</em></p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:01:42", "2018-03-17 16:01:42", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206532", "1", "2018-03-17 16:25:55", "2018-03-17 16:25:55", "", "Wpbooking Archive", "", "publish", "closed", "closed", "", "wpbooking-archive", "", "", "2018-03-17 16:25:55", "2018-03-17 16:25:55", "", "0", "http://panbilresidence.com/wpbooking-archive/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206533", "1", "2018-03-17 16:25:55", "2018-03-17 16:25:55", "", "Wpbooking Term & Condition", "", "publish", "closed", "closed", "", "wpbooking-term-condition", "", "", "2018-03-17 16:25:55", "2018-03-17 16:25:55", "", "0", "http://panbilresidence.com/wpbooking-term-condition/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206534", "1", "2018-03-17 16:25:55", "2018-03-17 16:25:55", "[wpbooking-myaccount]", "Wpbooking My Account", "", "publish", "closed", "closed", "", "wpbooking-my-account", "", "", "2018-03-17 16:25:55", "2018-03-17 16:25:55", "", "0", "http://panbilresidence.com/wpbooking-my-account/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206535", "1", "2018-03-17 16:26:10", "2018-03-17 16:26:10", "[wpbooking_checkout_page]", "Wpbooking Checkout", "", "publish", "closed", "closed", "", "wpbooking-checkout", "", "", "2018-03-17 16:26:10", "2018-03-17 16:26:10", "", "0", "http://panbilresidence.com/wpbooking-checkout/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206537", "1", "2018-03-17 16:46:41", "2018-03-17 16:46:41", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:46:41", "2018-03-17 16:46:41", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206536", "1", "2018-03-17 16:44:26", "2018-03-17 16:44:26", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>\n<p><span>[awebooking_check_availability]</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:44:26", "2018-03-17 16:44:26", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206527", "1", "2018-03-17 16:15:49", "2018-03-17 16:15:49", "[awebooking_check_availability]", "Check Availability", "", "publish", "closed", "closed", "", "check-availability", "", "", "2018-03-17 16:15:49", "2018-03-17 16:15:49", "", "0", "http://panbilresidence.com/check-availability/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206528", "1", "2018-03-17 16:15:49", "2018-03-17 16:15:49", "[awebooking_booking]", "Booking Informations", "", "publish", "closed", "closed", "", "booking", "", "", "2018-03-17 16:15:49", "2018-03-17 16:15:49", "", "0", "http://panbilresidence.com/booking/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206529", "1", "2018-03-17 16:15:49", "2018-03-17 16:15:49", "[awebooking_checkout]", "Confirm Booking", "", "publish", "closed", "closed", "", "checkout-2", "", "", "2018-03-17 16:15:49", "2018-03-17 16:15:49", "", "0", "http://panbilresidence.com/checkout-2/", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206530", "1", "2018-03-17 16:16:37", "2018-03-17 16:16:37", "aasdasdasd", "test room", "qweqweqwe", "publish", "closed", "closed", "", "test-room", "", "", "2018-03-17 16:17:00", "2018-03-17 16:17:00", "", "0", "http://panbilresidence.com/?post_type=room_type&#038;p=206530", "0", "room_type", "", "0");
INSERT INTO `wpj1_posts` VALUES("206531", "1", "2018-03-17 16:19:57", "2018-03-17 16:19:57", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>\n<p><span>[awebooking_check_form]</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:19:57", "2018-03-17 16:19:57", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206540", "1", "2018-03-17 16:54:23", "2018-03-17 16:54:23", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:54:23", "2018-03-17 16:54:23", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206539", "1", "2018-03-17 16:53:07", "2018-03-17 16:53:07", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" admin_label=\"Hero\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"PANBIL RESIDENCE APARTMENT\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>\n<p><span>[hotelier_listing] </span></p>\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-17 16:53:07", "2018-03-17 16:53:07", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206731", "1", "2018-03-22 22:40:17", "2018-03-22 22:40:17", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-22 22:40:17", "2018-03-22 22:40:17", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206549", "1", "2018-03-19 06:36:46", "2018-03-19 06:36:46", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 06:36:46", "2018-03-19 06:36:46", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206598", "1", "2018-03-20 05:50:30", "2018-03-20 05:50:30", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 05:50:30", "2018-03-20 05:50:30", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206751", "1", "2018-03-23 08:31:08", "2018-03-23 08:31:08", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:31:08", "2018-03-23 08:31:08", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206545", "1", "2018-03-19 06:24:40", "2018-03-19 06:24:40", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-19 06:24:40", "2018-03-19 06:24:40", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206543", "1", "2018-03-19 06:19:47", "2018-03-19 06:19:47", "[et_pb_section bb_built=\"1\" admin_label=\"Hero\" background_color=\"#1f1f1f\" fullwidth=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.77\" parallax=\"on\" custom_padding=\"|||\" transparent_background=\"on\"][et_pb_fullwidth_header title=\"VILLA PANBIL SERVICE RESIDENCE\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"32px\" background_overlay_color=\"rgba(31,31,31,0.85)\" _builder_version=\"3.0.96\" title_font_size=\"47px\" title_text_color=\"#ffffff\" title_line_height=\"1.3em\" title_line_height_last_edited=\"off|desktop\" content_font_size=\"19px\" content_text_color=\"#bfbfbf\" content_line_height=\"1.8em\" subhead_font=\"Montserrat||||\" subhead_text_color=\"#bebebe\" subhead_line_height=\"1.8em\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"5%||5%|\" animation_style=\"zoom\" animation_duration=\"1500ms\" animation_intensity_zoom=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide _builder_version=\"3.0.96\" heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" bg_overlay_color=\"rgba(31,31,31,0.85)\" text_overlay_color=\"rgba(31,31,31,0.6)\"] &amp;lt;p&amp;gt;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam,&amp;nbsp;eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.&amp;lt;/p&amp;gt; [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" bg_overlay_color=\"rgba(31,31,31,0.85)\" text_overlay_color=\"rgba(31,31,31,0.6)\"] &lt;p&gt;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.&lt;/p&gt; [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" bg_overlay_color=\"rgba(31,31,31,0.85)\" text_overlay_color=\"rgba(31,31,31,0.6)\"] &lt;p&gt;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.&lt;/p&gt; [/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" bg_overlay_color=\"rgba(31,31,31,0.85)\" text_overlay_color=\"rgba(31,31,31,0.6)\"] &lt;p&gt;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.&lt;/p&gt; [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Villas\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>How You Wonderfully Live</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Forest House</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa New Kuta</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Sanur</h1>\r\n[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"]\r\n[/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-19 06:19:47", "2018-03-19 06:19:47", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206551", "1", "2018-03-19 06:37:58", "2018-03-19 06:37:58", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 06:37:58", "2018-03-19 06:37:58", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206554", "1", "2018-03-19 06:40:20", "2018-03-19 06:40:20", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]<p>In the Spotlight</p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 06:40:20", "2018-03-19 06:40:20", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206557", "1", "2018-03-19 07:22:34", "2018-03-19 07:22:34", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" template_type=\"section\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]Facilities\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bedroom\r[/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of bathroom\r[/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of walk in closet\r[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of kitchen\r[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]Description of lounge\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "more column", "", "publish", "closed", "closed", "", "more-column", "", "", "2018-03-19 07:22:34", "2018-03-19 07:22:34", "", "0", "http://panbilresidence.com/et_pb_layout/more-column/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206558", "1", "2018-03-19 07:23:06", "2018-03-19 07:23:06", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bedroom [/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bathroom [/et_pb_blurb][et_pb_blurb title=\"2 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of walk in closet [/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of lounge [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 07:23:06", "2018-03-19 07:23:06", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206560", "1", "2018-03-19 08:12:17", "2018-03-19 08:12:17", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards &amp; Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 08:12:17", "2018-03-19 08:12:17", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206561", "1", "2018-03-19 08:15:10", "2018-03-19 08:15:10", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards &amp; Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 08:15:10", "2018-03-19 08:15:10", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206569", "1", "2018-03-19 09:12:54", "2018-03-19 09:12:54", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:12:54", "2018-03-19 09:12:54", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206566", "1", "2018-03-19 09:07:03", "2018-03-19 09:07:03", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:07:03", "2018-03-19 09:07:03", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206562", "1", "2018-03-19 08:48:23", "2018-03-19 08:48:23", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards &amp; Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 08:48:23", "2018-03-19 08:48:23", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206565", "1", "2018-03-19 09:06:14", "2018-03-19 09:06:14", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:06:14", "2018-03-19 09:06:14", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206563", "1", "2018-03-19 08:50:06", "2018-03-19 08:50:06", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9098.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards &amp; Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 08:50:06", "2018-03-19 08:50:06", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206583", "1", "2018-03-19 09:45:05", "2018-03-19 09:45:05", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:45:05", "2018-03-19 09:45:05", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206571", "1", "2018-03-19 09:13:59", "2018-03-19 09:13:59", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:13:59", "2018-03-19 09:13:59", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206578", "1", "2018-03-19 09:26:11", "2018-03-19 09:26:11", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" template_type=\"\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:26:11", "2018-03-19 09:26:11", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206572", "1", "2018-03-19 09:15:29", "2018-03-19 09:15:29", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:15:29", "2018-03-19 09:15:29", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206574", "1", "2018-03-19 09:23:15", "2018-03-19 09:23:15", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" _builder_version=\"3.0.96\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:23:15", "2018-03-19 09:23:15", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206582", "1", "2018-03-19 09:43:43", "2018-03-19 09:43:43", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:43:43", "2018-03-19 09:43:43", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206579", "1", "2018-03-19 09:31:36", "2018-03-19 09:31:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"0\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:31:36", "2018-03-19 09:31:36", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206584", "1", "2018-03-19 09:46:50", "2018-03-19 09:46:50", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:46:50", "2018-03-19 09:46:50", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206586", "1", "2018-03-19 10:01:23", "2018-03-19 10:01:23", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:01:23", "2018-03-19 10:01:23", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206585", "1", "2018-03-19 09:57:03", "2018-03-19 09:57:03", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 09:57:03", "2018-03-19 09:57:03", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206589", "1", "2018-03-19 10:13:09", "2018-03-19 10:13:09", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:13:09", "2018-03-19 10:13:09", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206588", "1", "2018-03-19 10:10:33", "2018-03-19 10:10:33", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_padding=\"||0px|\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:10:33", "2018-03-19 10:10:33", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206604", "1", "2018-03-20 07:02:52", "2018-03-20 07:02:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.0.96\" custom_padding=\"48px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" _builder_version=\"3.0.96\" module_id=\"et_pb_contact_form_0\" custom_button=\"on\" button_font=\"||||||||\" button_bg_color=\"#c39d63\" button_text_color=\"#ffffff\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Zip_Code\" field_title=\"Zip Code\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 07:02:52", "2018-03-20 07:02:52", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206602", "1", "2018-03-20 06:35:42", "2018-03-20 06:35:42", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row gutter_width=\"2\" _builder_version=\"3.0.96\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" _builder_version=\"3.0.96\" module_id=\"et_pb_contact_form_0\" form_field_font=\"||||||||\" custom_button=\"on\" button_font=\"||||||||\" button_text_size_last_edited=\"on|desktop\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check In\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" _builder_version=\"3.0.96\" border_radii=\"on||||\" field_type=\"select\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;||\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" _builder_version=\"3.0.96\" border_radii=\"on||||\" field_type=\"select\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;||\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:5},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 06:35:42", "2018-03-20 06:35:42", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206593", "1", "2018-03-19 10:24:44", "2018-03-19 10:24:44", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:24:44", "2018-03-19 10:24:44", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206592", "1", "2018-03-19 10:18:59", "2018-03-19 10:18:59", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:18:59", "2018-03-19 10:18:59", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206591", "1", "2018-03-19 10:17:24", "2018-03-19 10:17:24", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_code _builder_version=\"3.0.96\"]&lt;a class=&quot;ds-hover-1&quot; href=&quot;Link URL Here&quot; ds-title=&quot;Studio Deluxe&quot; ds-desc=&quot;The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.&quot;&gt;&lt;img src=&quot;http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg&quot; alt=&quot;Alt text Here&quot;&gt;&lt;/a&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_code _builder_version=\"3.0.96\"]&lt;a class=&quot;ds-hover-1&quot; href=&quot;Link URL Here&quot; ds-title=&quot;Studio Deluxe&quot; ds-desc=&quot;The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.&quot;&gt;&lt;img src=&quot;http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg&quot; alt=&quot;Alt text Here&quot;&gt;&lt;/a&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_code _builder_version=\"3.0.96\"]&lt;a class=&quot;ds-hover-1&quot; href=&quot;Link URL Here&quot; ds-title=&quot;Studio Deluxe&quot; ds-desc=&quot;The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.&quot;&gt;&lt;img src=&quot;http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg&quot; alt=&quot;Alt text Here&quot;&gt;&lt;/a&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_code _builder_version=\"3.0.96\"]&lt;a class=&quot;ds-hover-1&quot; href=&quot;Link URL Here&quot; ds-title=&quot;Studio Deluxe&quot; ds-desc=&quot;The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.&quot;&gt;&lt;img src=&quot;http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg&quot; alt=&quot;Alt text Here&quot;&gt;&lt;/a&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:17:24", "2018-03-19 10:17:24", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206594", "1", "2018-03-19 10:28:40", "2018-03-19 10:28:40", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row custom_width_px=\"1774px\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" use_custom_gutter=\"on\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span>\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"\r\n</em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\" custom_css_main_element=\"height: 429px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:28:40", "2018-03-19 10:28:40", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206596", "1", "2018-03-19 10:37:52", "2018-03-19 10:37:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" header_font=\"||||||||\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-19 10:37:52", "2018-03-19 10:37:52", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206608", "1", "2018-03-20 07:05:36", "2018-03-20 07:05:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\" submit_button_text=\"Check Availability\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 07:05:36", "2018-03-20 07:05:36", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206607", "1", "2018-03-20 07:05:12", "2018-03-20 07:05:12", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 07:05:12", "2018-03-20 07:05:12", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206610", "1", "2018-03-20 07:22:25", "2018-03-20 07:22:25", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\" submit_button_text=\"Check Availability\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 429px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 07:22:25", "2018-03-20 07:22:25", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206616", "1", "2018-03-20 08:03:12", "2018-03-20 08:03:12", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:03:12", "2018-03-20 08:03:12", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206612", "1", "2018-03-20 07:36:58", "2018-03-20 07:36:58", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-2\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 07:36:58", "2018-03-20 07:36:58", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206615", "1", "2018-03-20 08:02:42", "2018-03-20 08:02:42", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_1=\"50px\" padding_right_1=\"50px\" padding_bottom_1=\"50px\" padding_left_1=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:02:42", "2018-03-20 08:02:42", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206618", "1", "2018-03-20 08:04:18", "2018-03-20 08:04:18", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:04:18", "2018-03-20 08:04:18", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206622", "1", "2018-03-20 08:16:13", "2018-03-20 08:16:13", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:16:13", "2018-03-20 08:16:13", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206620", "1", "2018-03-20 08:11:31", "2018-03-20 08:11:31", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\" background_layout=\"light\" module_class=\"redmore\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:11:31", "2018-03-20 08:11:31", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206621", "1", "2018-03-20 08:12:04", "2018-03-20 08:12:04", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\" background_layout=\"light\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:12:04", "2018-03-20 08:12:04", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206638", "1", "2018-03-20 09:06:08", "2018-03-20 09:06:08", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" force_fullwidth=\"off\" show_bottom_space=\"on\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\" background_layout=\"light\"]\r\n\r\nThe Apartment\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" background_layout=\"light\"]\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 171px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 09:06:08", "2018-03-20 09:06:08", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206632", "1", "2018-03-20 09:02:41", "2018-03-20 09:02:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#b7b7b7\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 09:02:41", "2018-03-20 09:02:41", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206625", "1", "2018-03-20 08:52:00", "2018-03-20 08:52:00", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:52:00", "2018-03-20 08:52:00", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206626", "1", "2018-03-20 08:52:55", "2018-03-20 08:52:55", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#ffffff\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]\r\n\r\nTHE APARTMENT\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Fresh Ingredients\" background_color=\"#1f1f1f\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nIn the Spotlight\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n\r\n<h1>Awards & Recognition</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" /][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:52:55", "2018-03-20 08:52:55", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206631", "1", "2018-03-20 08:59:46", "2018-03-20 08:59:46", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#b7b7b7\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:59:46", "2018-03-20 08:59:46", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206628", "1", "2018-03-20 08:56:08", "2018-03-20 08:56:08", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" module_class=\"five-columns\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 08:56:08", "2018-03-20 08:56:08", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206646", "1", "2018-03-20 09:36:06", "2018-03-20 09:36:06", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio Deluxe</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Deluxe Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Studio Deluxe", "", "publish", "closed", "closed", "", "studio-deluxe", "", "", "2018-03-26 06:05:41", "2018-03-26 06:05:41", "", "0", "http://panbilresidence.com/?page_id=206646", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206650", "1", "2018-03-20 09:40:04", "2018-03-20 09:40:04", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 09:40:04", "2018-03-20 09:40:04", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206647", "1", "2018-03-20 09:36:06", "2018-03-20 09:36:06", "[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" link_font=\"||||||||\" ul_font=\"||||||||\" ol_font=\"||||||||\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" header_5_font=\"||||||||\" header_6_font=\"||||||||\"]\r\n<h1>Villa Matoa</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_slider _builder_version=\"3.0.96\" header_font=\"||||||||\" body_font=\"||||||||\" custom_padding=\"280px|||\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-10.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"||5px|\"]\r\n<h1 class=\"_1eDWt\">Impressive</h1>\r\n<h1 class=\"_13pM0\"><span class=\"_3LOP9\">8.5</span>/10</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\"] According to 10 guests [/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#bfbfbf\" header_font=\"||||||||\" header_4_font=\"||||||||\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Matoa Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"] Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"|||\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"] Facilities [/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bedroom [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of bathroom [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of kitchen [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"] Description of lounge [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 09:36:06", "2018-03-20 09:36:06", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206672", "1", "2018-03-21 09:08:04", "2018-03-21 09:08:04", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-1-1.jpg\" background_position=\"center_right\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Studio Executive", "", "publish", "closed", "closed", "", "studio-executive", "", "", "2018-03-26 06:07:00", "2018-03-26 06:07:00", "", "0", "http://panbilresidence.com/?page_id=206672", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206660", "1", "2018-03-21 00:52:26", "2018-03-21 00:52:26", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1>Why it\'s The Best</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]\r\n<h1>Awards &amp; Recognition</h1>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1>What We Offer</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r\n[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 00:52:26", "2018-03-21 00:52:26", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206657", "1", "2018-03-21 00:47:03", "2018-03-21 00:47:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Delux\" ds-desc=\"MORE DETAILS \"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 00:47:03", "2018-03-21 00:47:03", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206644", "1", "2018-03-20 09:28:54", "2018-03-20 09:28:54", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Delux\" ds-desc=\"MORE DETAILS \"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 09:28:54", "2018-03-20 09:28:54", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206640", "1", "2018-03-20 09:17:28", "2018-03-20 09:17:28", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Delux\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom. \"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 09:17:28", "2018-03-20 09:17:28", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206634", "1", "2018-03-20 09:03:21", "2018-03-20 09:03:21", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 214px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"1774px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_top_2=\"50px\" padding_right_2=\"50px\" padding_bottom_2=\"50px\" padding_left_2=\"50px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 428px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"50px\" padding_left=\"50px\" padding_right=\"50px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\"]THE APARTMENT\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"#1f1f1f\" header_font=\"||||||||\" header_font_size=\"29px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"Montserrat||||\" text_text_color=\"#939393\" text_line_height=\"1.4em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span></p>\r\n<p><span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\"<br /> </em><span style=\"color: #c39d63;\">John Doe</span></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of queen size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden or forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"Experience this spacious 64 sq. meter room, featuring queen size bed and single bed, high quality bed linen and kitchen equipment. Stay entertained with your favorite channel on 40-inch flat screen television.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"The comfortable 72 sq. meter room features a choice of queen size bed with 40-inch flat screen television, safe deposit box and etc. Enjoy your favorite international channel on television. Enjoy the admiring the view of forest through its bedroom.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"The biggest room type at Panbil Residence Apartment Batam. Three Bed Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\"></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-20 09:03:21", "2018-03-20 09:03:21", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206636", "1", "2018-03-20 09:03:47", "2018-03-20 09:03:47", "[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "section 2 villa & apartment", "", "publish", "closed", "closed", "", "section-2-villa-apartment", "", "", "2018-03-20 09:03:47", "2018-03-20 09:03:47", "", "0", "http://panbilresidence.com/et_pb_layout/section-2-villa-apartment/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206651", "1", "2018-03-20 09:40:41", "2018-03-20 09:40:41", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 09:40:41", "2018-03-20 09:40:41", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206652", "1", "2018-03-20 09:41:18", "2018-03-20 09:41:18", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-20.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-3.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-18.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-6.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-16.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-22.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n<h1>Villa Jimbaran</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" header_3_font=\"||||||||\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n<h4>Villa Jimbaran Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam ac nisl pretium mauris iaculis gravida. Morbi volutpat at orci sed malesuada. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 09:41:18", "2018-03-20 09:41:18", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206653", "1", "2018-03-20 10:09:37", "2018-03-20 10:09:37", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Studio Deluxe</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\" background_layout=\"light\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Studio Deluxe Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"||||||||\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nFacilities\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bedroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of bathroom\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"4 Walk In Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_text_color=\"#ffffff\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of walk in closet\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of kitchen\r\n\r\n[/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" _builder_version=\"3.0.96\" header_font=\"||||||||\" header_text_color=\"#ffffff\" body_font=\"||||||||\" body_text_color=\"#939393\" text_orientation=\"center\"]\r\n\r\nDescription of lounge\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 10:09:37", "2018-03-20 10:09:37", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206654", "1", "2018-03-20 10:22:10", "2018-03-20 10:22:10", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Studio Deluxe</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\" background_layout=\"light\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Studio Deluxe Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" background_layout=\"light\"]\r\n\r\nServices &amp; Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Residence Features\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Leisure Amenities\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Service &amp; Offering\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 10:22:10", "2018-03-20 10:22:10", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206655", "1", "2018-03-20 10:24:17", "2018-03-20 10:24:17", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Studio Deluxe</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\" background_layout=\"light\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Studio Deluxe Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" background_layout=\"light\"]\r\n\r\nServices &amp; Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Residence Features\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Leisure Amenities\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Service &amp; Offering\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206412,206414,206401,206397\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 10:24:17", "2018-03-20 10:24:17", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206833", "1", "2018-03-26 06:05:41", "2018-03-26 06:05:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio Deluxe</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Deluxe Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-26 06:05:41", "2018-03-26 06:05:41", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206656", "1", "2018-03-20 10:28:29", "2018-03-20 10:28:29", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" background_layout=\"light\"]\r\n<h1>Studio Deluxe</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\" background_layout=\"light\"]\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\" background_layout=\"light\"]\r\n<h4>Studio Deluxe Description</h4>\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\" background_layout=\"light\"]\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" background_layout=\"light\"]\r\n\r\nServices &amp; Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Residence Features\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Leisure Amenities\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb _builder_version=\"3.0.96\" title=\"Service &amp; Offering\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"left\" use_icon_font_size=\"off\" background_layout=\"light\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" fullwidth=\"off\" orientation=\"landscape\" hover_overlay_color=\"rgba(255,255,255,0.9)\" background_layout=\"light\" posts_number=\"12\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\nHours of Operation\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n<h1>Drop Us a Line</h1>\r\nLet us know if you have any questions!\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\nDialogue is an essential part of any script\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Deluxe", "", "inherit", "closed", "closed", "", "206646-revision-v1", "", "", "2018-03-20 10:28:29", "2018-03-20 10:28:29", "", "206646", "http://panbilresidence.com/206646-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206671", "1", "2018-03-21 08:44:37", "2018-03-21 08:44:37", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio Deluxe</h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Deluxe Description</h4>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "detail apartment fix", "", "publish", "closed", "closed", "", "detail-apartment-fix", "", "", "2018-03-21 08:44:37", "2018-03-21 08:44:37", "", "0", "http://panbilresidence.com/et_pb_layout/detail-apartment-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206668", "1", "2018-03-21 01:07:34", "2018-03-21 01:07:34", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 01:07:34", "2018-03-21 01:07:34", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206665", "1", "2018-03-21 01:05:40", "2018-03-21 01:05:40", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" custom_css_main_element=\"height: 171px;\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 01:05:40", "2018-03-21 01:05:40", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206662", "1", "2018-03-21 00:58:57", "2018-03-21 00:58:57", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\" template_type=\"section\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "type apartment fix", "", "publish", "closed", "closed", "", "type-apartment-fix", "", "", "2018-03-21 00:58:57", "2018-03-21 00:58:57", "", "0", "http://panbilresidence.com/et_pb_layout/type-apartment-fix/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206664", "1", "2018-03-21 01:01:06", "2018-03-21 01:01:06", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 01:01:06", "2018-03-21 01:01:06", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206669", "1", "2018-03-21 01:16:01", "2018-03-21 01:16:01", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\" background_color=\"#1f1f1f\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 01:16:01", "2018-03-21 01:16:01", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206670", "1", "2018-03-21 01:17:14", "2018-03-21 01:17:14", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 01:17:14", "2018-03-21 01:17:14", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206673", "1", "2018-03-21 09:07:05", "2018-03-21 09:07:05", "", "Type-Three-Bedroom-1", "", "inherit", "open", "closed", "", "type-three-bedroom-1-2", "", "", "2018-03-21 09:07:05", "2018-03-21 09:07:05", "", "206672", "http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206678", "1", "2018-03-21 09:09:59", "2018-03-21 09:09:59", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg\" background_position=\"center_right\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Executive", "", "inherit", "closed", "closed", "", "206672-revision-v1", "", "", "2018-03-21 09:09:59", "2018-03-21 09:09:59", "", "206672", "http://panbilresidence.com/206672-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206674", "1", "2018-03-21 09:08:04", "2018-03-21 09:08:04", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center_right\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Executive", "", "inherit", "closed", "closed", "", "206672-revision-v1", "", "", "2018-03-21 09:08:04", "2018-03-21 09:08:04", "", "206672", "http://panbilresidence.com/206672-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206675", "1", "2018-03-21 09:08:49", "2018-03-21 09:08:49", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 09:08:49", "2018-03-21 09:08:49", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206686", "1", "2018-03-21 09:27:40", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "closed", "closed", "", "", "", "", "2018-03-21 09:27:40", "0000-00-00 00:00:00", "", "0", "http://panbilresidence.com/?page_id=206686", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206689", "1", "2018-03-21 09:29:55", "2018-03-21 09:29:55", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Two bedroom deluxe</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Two Bedroom Deluxe Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Experience this spacious 64 sq. meter room, featuring </span>queen<span lang=\"id-ID\"> size bed</span> and single bed<span lang=\"id-ID\">, high quality bed linen and </span>kitchen equipment<span lang=\"id-ID\">. Stay entertained with your favorite channel on 40-inch flat screen television.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Two Bedroom Deluxe", "", "inherit", "closed", "closed", "", "206679-revision-v1", "", "", "2018-03-21 09:29:55", "2018-03-21 09:29:55", "", "206679", "http://panbilresidence.com/206679-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206687", "1", "2018-03-21 09:28:37", "2018-03-21 09:28:37", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-4.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-13.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Two Bedroom Deluxe", "", "inherit", "closed", "closed", "", "206679-revision-v1", "", "", "2018-03-21 09:28:37", "2018-03-21 09:28:37", "", "206679", "http://panbilresidence.com/206679-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206684", "1", "2018-03-21 09:24:42", "2018-03-21 09:24:42", "", "Studio-Executive-1", "", "inherit", "open", "closed", "", "studio-executive-1-2", "", "", "2018-03-21 09:24:42", "2018-03-21 09:24:42", "", "0", "http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-1-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206830", "1", "2018-03-26 00:32:19", "2018-03-26 00:32:19", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-1-1.jpg\" background_position=\"center_right\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Studio Executive", "", "inherit", "closed", "closed", "", "206672-revision-v1", "", "", "2018-03-26 00:32:19", "2018-03-26 00:32:19", "", "206672", "http://panbilresidence.com/206672-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206685", "1", "2018-03-21 09:25:08", "2018-03-21 09:25:08", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-1-1.jpg\" background_position=\"center_right\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Studio Executive", "", "inherit", "closed", "closed", "", "206672-revision-v1", "", "", "2018-03-21 09:25:08", "2018-03-21 09:25:08", "", "206672", "http://panbilresidence.com/206672-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206679", "1", "2018-03-21 09:28:37", "2018-03-21 09:28:37", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Two bedroom deluxe</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Two Bedroom Deluxe Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Experience this spacious 64 sq. meter room, featuring </span>queen<span lang=\"id-ID\"> size bed</span> and single bed<span lang=\"id-ID\">, high quality bed linen and </span>kitchen equipment<span lang=\"id-ID\">. Stay entertained with your favorite channel on 40-inch flat screen television.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"30px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Two Bedroom Deluxe", "", "publish", "closed", "closed", "", "two-bedroom-deluxe", "", "", "2018-03-26 06:07:48", "2018-03-26 06:07:48", "", "0", "http://panbilresidence.com/?page_id=206679", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206680", "1", "2018-03-21 09:11:29", "2018-03-21 09:11:29", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 09:11:29", "2018-03-21 09:11:29", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206682", "1", "2018-03-21 09:20:24", "2018-03-21 09:20:24", "", "Two-Bedroom-Deluxe-1", "", "inherit", "open", "closed", "", "two-bedroom-deluxe-1-2", "", "", "2018-03-21 09:20:24", "2018-03-21 09:20:24", "", "206679", "http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wpj1_posts` VALUES("206835", "1", "2018-03-26 06:07:48", "2018-03-26 06:07:48", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Two bedroom deluxe</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Two Bedroom Deluxe Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Experience this spacious 64 sq. meter room, featuring </span>queen<span lang=\"id-ID\"> size bed</span> and single bed<span lang=\"id-ID\">, high quality bed linen and </span>kitchen equipment<span lang=\"id-ID\">. Stay entertained with your favorite channel on 40-inch flat screen television.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"30px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Two Bedroom Deluxe", "", "inherit", "closed", "closed", "", "206679-revision-v1", "", "", "2018-03-26 06:07:48", "2018-03-26 06:07:48", "", "206679", "http://panbilresidence.com/206679-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206690", "1", "2018-03-21 09:30:00", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2018-03-21 09:30:00", "0000-00-00 00:00:00", "", "0", "http://panbilresidence.com/?p=206690", "0", "post", "", "0");
INSERT INTO `wpj1_posts` VALUES("206691", "1", "2018-03-21 09:30:33", "2018-03-21 09:30:33", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Two bedroom Executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Two Bedroom Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 72 sq. meter room features a choice of </span>queen<span lang=\"id-ID\"> size bed with 40-inch flat screen television, safe deposit box</span> and etc<span lang=\"id-ID\">. </span>Enjoy<span lang=\"id-ID\"> your favorite international channel on television.</span> <span lang=\"id-ID\">Enjoy the admiring the view of </span>forest<span lang=\"id-ID\"> through its bedroom.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Two Bedroom Executive", "", "publish", "closed", "closed", "", "two-bedroom-executive", "", "", "2018-03-26 06:09:01", "2018-03-26 06:09:01", "", "0", "http://panbilresidence.com/?page_id=206691", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206692", "1", "2018-03-21 09:30:33", "2018-03-21 09:30:33", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Two Bedroom Executive", "", "inherit", "closed", "closed", "", "206691-revision-v1", "", "", "2018-03-21 09:30:33", "2018-03-21 09:30:33", "", "206691", "http://panbilresidence.com/206691-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206693", "1", "2018-03-21 09:31:03", "2018-03-21 09:31:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"Link URL Here\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 09:31:03", "2018-03-21 09:31:03", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206836", "1", "2018-03-26 06:09:01", "2018-03-26 06:09:01", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Two bedroom Executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Two Bedroom Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 72 sq. meter room features a choice of </span>queen<span lang=\"id-ID\"> size bed with 40-inch flat screen television, safe deposit box</span> and etc<span lang=\"id-ID\">. </span>Enjoy<span lang=\"id-ID\"> your favorite international channel on television.</span> <span lang=\"id-ID\">Enjoy the admiring the view of </span>forest<span lang=\"id-ID\"> through its bedroom.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Two Bedroom Executive", "", "inherit", "closed", "closed", "", "206691-revision-v1", "", "", "2018-03-26 06:09:01", "2018-03-26 06:09:01", "", "206691", "http://panbilresidence.com/206691-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206697", "1", "2018-03-21 09:39:37", "2018-03-21 09:39:37", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Two bedroom Executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Two Bedroom Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 72 sq. meter room features a choice of </span>queen<span lang=\"id-ID\"> size bed with 40-inch flat screen television, safe deposit box</span> and etc<span lang=\"id-ID\">. </span>Enjoy<span lang=\"id-ID\"> your favorite international channel on television.</span> <span lang=\"id-ID\">Enjoy the admiring the view of </span>forest<span lang=\"id-ID\"> through its bedroom.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Two Bedroom Executive", "", "inherit", "closed", "closed", "", "206691-revision-v1", "", "", "2018-03-21 09:39:37", "2018-03-21 09:39:37", "", "206691", "http://panbilresidence.com/206691-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206695", "1", "2018-03-21 09:35:02", "2018-03-21 09:35:02", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-13.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Two Bedroom Executive", "", "inherit", "closed", "closed", "", "206691-revision-v1", "", "", "2018-03-21 09:35:02", "2018-03-21 09:35:02", "", "206691", "http://panbilresidence.com/206691-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206698", "1", "2018-03-21 09:40:25", "2018-03-21 09:40:25", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Three Bedroom</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Three Bedroom Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The biggest room type at Panbil Residence Apartment Batam. </span>Three Bed<span lang=\"id-ID\"> Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Three Bedroom", "", "publish", "closed", "closed", "", "three-bedroom", "", "", "2018-03-26 06:09:53", "2018-03-26 06:09:53", "", "0", "http://panbilresidence.com/?page_id=206698", "0", "page", "", "0");
INSERT INTO `wpj1_posts` VALUES("206699", "1", "2018-03-21 09:40:25", "2018-03-21 09:40:25", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Three Bedroom", "", "inherit", "closed", "closed", "", "206698-revision-v1", "", "", "2018-03-21 09:40:25", "2018-03-21 09:40:25", "", "206698", "http://panbilresidence.com/206698-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206730", "1", "2018-03-22 22:40:02", "2018-03-22 22:40:02", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-22 22:40:02", "2018-03-22 22:40:02", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206700", "1", "2018-03-21 09:40:44", "2018-03-21 09:40:44", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo. <span style=\"font-size: 17px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.</span> <span style=\"color: #1f1f1f;\"><em>\"Nunc sit amet turpis tristique, interdum erat\" </em><span style=\"color: #c39d63;\">John Doe</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.77\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"100px|100px|100px|100px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI\r\n</strong><span style=\"font-size: 15px;\">10:00am – 1:00pm\r\n4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT\r\n</strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN\r\n</b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.77\" text_font=\"Montserrat||||\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font=\"Montserrat||||\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-21 09:40:44", "2018-03-21 09:40:44", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206837", "1", "2018-03-26 06:09:53", "2018-03-26 06:09:53", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Three Bedroom</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Three Bedroom Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The biggest room type at Panbil Residence Apartment Batam. </span>Three Bed<span lang=\"id-ID\"> Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Three Bedroom", "", "inherit", "closed", "closed", "", "206698-revision-v1", "", "", "2018-03-26 06:09:53", "2018-03-26 06:09:53", "", "206698", "http://panbilresidence.com/206698-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206704", "1", "2018-03-21 09:46:19", "2018-03-21 09:46:19", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-14.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-13.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Three Bedroom</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Three Bedroom Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The biggest room type at Panbil Residence Apartment Batam. </span>Three Bed<span lang=\"id-ID\"> Room offers comfortable accommodation with the size of 96 sq. meter room, featuring high quality mattress and bed linen, 40-inch flat screen television and kitchen equipment.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Three Bedroom", "", "inherit", "closed", "closed", "", "206698-revision-v1", "", "", "2018-03-21 09:46:19", "2018-03-21 09:46:19", "", "206698", "http://panbilresidence.com/206698-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206702", "1", "2018-03-21 09:45:12", "2018-03-21 09:45:12", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\" show_arrows=\"on\" show_pagination=\"on\" show_inner_shadow=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-3.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-14.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-13.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-1-1.jpg\" custom_button=\"off\" button_on_hover=\"on\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]\r\n\r\n<h1>Studio Deluxe</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]\r\n\r\n<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]\r\n\r\nAccording to 10 guests\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]\r\n\r\n<h4>Studio Deluxe Description</h4>\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\" /][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">The comfortable 32 sq. meter Studio Deluxe Rooms are fully furnished with a choice of </span>queen<span lang=\"id-ID\"> size bed, high quality bed linen and bathroom with rain shower. Enjoy the admiring the view of garden</span> or forest<span lang=\"id-ID\"> through its bedroom. </span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]\r\n\r\nServices & Features\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]\r\n\r\n<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Us\" background_color=\"rgba(0,0,0,0.75)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" global_module=\"205456\"][et_pb_row global_parent=\"205456\" use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\" background_layout=\"light\"]\r\n\r\n<p>Hours of Operation</p>\r\n\r\n[/et_pb_text][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" background_layout=\"light\"]\r\n\r\n<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>\r\n\r\n[/et_pb_text][et_pb_divider global_parent=\"205456\" color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" /][et_pb_text global_parent=\"205456\" _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\" background_layout=\"light\"]\r\n\r\n<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" button_url=\"www.panbilresidence.com/contactus/\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text global_parent=\"205456\" background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]\r\n\r\n<h1>Drop Us a Line</h1><p>Let us know if you have any questions!</p>\r\n\r\n[/et_pb_text][et_pb_button global_parent=\"205456\" button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_signup global_parent=\"205456\" mailchimp_list=\"|null\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\" activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" background_layout=\"dark\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" button_icon_placement=\"right\"]\r\n\r\n<p>Dialogue is an essential part of any script</p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Three Bedroom", "", "inherit", "closed", "closed", "", "206698-revision-v1", "", "", "2018-03-21 09:45:12", "2018-03-21 09:45:12", "", "206698", "http://panbilresidence.com/206698-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206709", "1", "2018-03-21 20:48:49", "2018-03-21 20:48:49", "[et_pb_row custom_padding=\"80px|0px|56px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\" template_type=\"row\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row]", "Home After Introduction", "", "publish", "closed", "closed", "", "home-after-introduction", "", "", "2018-03-21 20:48:49", "2018-03-21 20:48:49", "", "0", "http://panbilresidence.com/et_pb_layout/home-after-introduction/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206713", "1", "2018-03-21 20:58:03", "2018-03-21 20:58:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-21 20:58:03", "2018-03-21 20:58:03", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206710", "1", "2018-03-21 20:49:11", "2018-03-21 20:49:11", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" header_font=\"||||||||\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-21 20:49:11", "2018-03-21 20:49:11", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206708", "1", "2018-03-21 20:48:27", "2018-03-21 20:48:27", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<h2 style=\"text-align: center;\">Introducing Panbil Residence</h2>\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"80px|0px|56px|0px\" make_equal=\"on\" _builder_version=\"3.0.96\" module_alignment=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/table-white-home-interior.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.96\" filter_saturate=\"70%\" filter_brightness=\"98%\" filter_contrast=\"111%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<div class=\"et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1\">\r\n<div class=\"et_pb_text_inner\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"single-property-highlight\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<span style=\"color: #1f1f1f;\"><em>\"Home is where love resides. Memories are created. Friends are always welcome and laughter never ends\"\r\n- </em><span style=\"color: #c39d63;\">Unknown</span></span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\" header_font=\"||||||||\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-21 20:48:27", "2018-03-21 20:48:27", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206717", "1", "2018-03-21 21:12:35", "2018-03-21 21:12:35", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-21 21:12:35", "2018-03-21 21:12:35", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206728", "1", "2018-03-22 21:30:58", "2018-03-22 21:30:58", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-22 21:30:58", "2018-03-22 21:30:58", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206727", "1", "2018-03-22 21:30:36", "0000-00-00 00:00:00", "", "", "", "draft", "closed", "closed", "", "", "", "", "2018-03-22 21:30:36", "0000-00-00 00:00:00", "", "0", "http://panbilresidence.com/?p=206727", "0", "wpgmapembed", "", "0");
INSERT INTO `wpj1_posts` VALUES("206725", "1", "2018-03-22 20:11:32", "2018-03-22 20:11:32", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206722&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-22 20:11:32", "2018-03-22 20:11:32", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206724", "1", "2018-03-22 20:10:15", "2018-03-22 20:10:15", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_pagination=\"off\" show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206722&quot;][/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" global_module=\"205456\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]<p>Hours of Operation</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<p><strong>MON – FRI<br /> </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm<br /> 4:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><strong>SAT<br /> </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span></p>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<p><span style=\"font-size: 15px;\"><b>SUN<br /> </b></span><span style=\"font-size: 15px;\">We are closed</span></p>[/et_pb_text][et_pb_button button_url=\"http://www.panbilresidence.com/contactus/\" button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\n<p>Let us know if you have any questions!</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"][/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]<p>Dialogue is an essential part of any script</p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-22 20:10:15", "2018-03-22 20:10:15", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206750", "1", "2018-03-23 08:29:18", "2018-03-23 08:29:18", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-23 08:29:18", "2018-03-23 08:29:18", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206746", "1", "2018-03-23 06:55:01", "2018-03-23 06:55:01", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\" parallax=\"on\" custom_margin=\"|||\" custom_padding=\"||700px|\" show_arrows=\"on\" show_pagination=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\" /][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1><em>A Place I Call Home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=\"206727\"][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-23 06:55:01", "2018-03-23 06:55:01", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206734", "1", "2018-03-22 23:06:10", "2018-03-22 23:06:10", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-22 23:06:10", "2018-03-22 23:06:10", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206733", "1", "2018-03-22 22:47:13", "2018-03-22 22:47:13", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-22 22:47:13", "2018-03-22 22:47:13", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206742", "1", "2018-03-23 06:05:04", "2018-03-23 06:05:04", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story\" background_color=\"#ffffff\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]\r\n\r\nThe Apartment\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\" /][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n<h1>Why it\'s The Best</h1>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]\r\n\r\n<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]\r\n\r\n<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row admin_label=\"row\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]\r\n\r\nFeatures\r\n\r\n[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\" /][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n\r\n<h1>What We Offer</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]\r\n\r\nPhasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-23 06:05:04", "2018-03-23 06:05:04", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206737", "1", "2018-03-22 23:32:32", "2018-03-22 23:32:32", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-22 23:32:32", "2018-03-22 23:32:32", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206736", "1", "2018-03-22 23:32:16", "2018-03-22 23:32:16", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-22 23:32:16", "2018-03-22 23:32:16", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206740", "1", "2018-03-23 05:15:39", "2018-03-23 05:15:39", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" header_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\" parallax=\"on\" custom_margin=\"|||\" custom_padding=\"||700px|\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1><em>A Place I Call Home...</em></h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-23 05:15:39", "2018-03-23 05:15:39", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206745", "1", "2018-03-23 06:53:01", "2018-03-23 06:53:01", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\" parallax=\"on\" custom_margin=\"|||\" custom_padding=\"||700px|\" show_arrows=\"on\" show_pagination=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\" /][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\"] &lt;img class=\"size-full wp-image-206397\" src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Villa-Club-House-3-1.jpg\" alt=\"\" width=\"5472\" height=\"3648\" /&gt; Club House [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1><em>A Place I Call Home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=\"206727\"][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-23 06:53:01", "2018-03-23 06:53:01", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206747", "1", "2018-03-23 06:55:20", "2018-03-23 06:55:20", "[et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" border_color_all=\"#a5a000\" border_style_all=\"none\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\" parallax=\"on\" custom_margin=\"|||\" custom_padding=\"||700px|\" show_arrows=\"on\" show_pagination=\"on\" custom_button=\"off\" button_icon_placement=\"right\" show_content_on_mobile=\"on\" show_cta_on_mobile=\"on\" show_image_video_mobile=\"off\"][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" background_color=\"#ffffff\" /][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\" background_color=\"#ffffff\" /][et_pb_slide _builder_version=\"3.0.96\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_color_gradient_overlays_image=\"off\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" alignment=\"center\" child_filter_hue_rotate=\"0deg\" child_filter_saturate=\"100%\" child_filter_brightness=\"100%\" child_filter_contrast=\"100%\" child_filter_invert=\"0%\" child_filter_sepia=\"0%\" child_filter_opacity=\"100%\" child_filter_blur=\"0px\" child_mix_blend_mode=\"normal\" background_layout=\"dark\" custom_button=\"off\" button_bg_use_color_gradient=\"off\" button_bg_color_gradient_overlays_image=\"off\" button_use_icon=\"on\" button_on_hover=\"on\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(224,153,0,0.61)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_text_color=\"rgba(30,30,30,0.34)\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"rgba(31,31,31,0.71)\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]\r\n<h1><em>A Place I Call Home...</em></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]\r\n<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]\r\n<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.96\"]\r\n<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to</p>\r\n<p style=\"text-align: center;\">experience comfort of stay.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=\"206727\"][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-23 06:55:20", "2018-03-23 06:55:20", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206763", "1", "2018-03-23 08:42:04", "2018-03-23 08:42:04", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\" background_color=\"#efefef\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:42:04", "2018-03-23 08:42:04", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206758", "1", "2018-03-23 08:39:27", "2018-03-23 08:39:27", "[et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"30px|0px|0px|0px\" template_type=\"section\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Google Map", "", "publish", "closed", "closed", "", "google-map", "", "", "2018-03-23 08:39:27", "2018-03-23 08:39:27", "", "0", "http://panbilresidence.com/et_pb_layout/google-map/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206754", "1", "2018-03-23 08:31:58", "2018-03-23 08:31:58", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:31:58", "2018-03-23 08:31:58", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206753", "1", "2018-03-23 08:31:43", "2018-03-23 08:31:43", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"] <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.</p> [/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" admin_label=\"Fresh Ingredients\" _builder_version=\"3.0.96\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_width_px=\"1774px\" custom_padding=\"27px|0px|27px|0px\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]In the Spotlight\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text background_layout=\"dark\" disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" header_text_align=\"center\" header_font_size=\"48px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\"]<h1>Awards & Recognition</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Stats\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Publications\" number=\"37\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Awards\" number=\"22\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Michelin Stars\" number=\"2\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Chefs\" number=\"18\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.96\" title_font=\"|700||on|||||\" title_font_size=\"14px\" title_letter_spacing=\"2px\" title_line_height=\"2em\" number_text_color=\"#c39d63\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"] \r[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:31:43", "2018-03-23 08:31:43", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206759", "1", "2018-03-23 08:39:56", "2018-03-23 08:39:56", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"30px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:39:56", "2018-03-23 08:39:56", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206756", "1", "2018-03-23 08:36:28", "2018-03-23 08:36:28", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\" body_font=\"||||||||\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\" background_color=\"#ffffff\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.75)\" admin_label=\"Contact Us\" _builder_version=\"3.0.77\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/restaurant-hero-03.jpg\" background_blend=\"color\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"|||\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1f1f1f\" background_color_2=\"#1f1f1f\" padding_top_1=\"100px\" padding_right_1=\"5%\" padding_bottom_1=\"100px\" padding_left_1=\"5%\" padding_top_2=\"100px\" padding_right_2=\"5%\" padding_bottom_2=\"100px\" padding_left_2=\"5%\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"30px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"400px\" module_alignment=\"center\" custom_padding=\"||30px|\"]Hours of Operation\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<strong>MON – FRI </strong><span style=\"font-size: 15px;\">10:00am – 1:00pm 4:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<strong>SAT </strong><span style=\"font-size: 15px;\">3:00pm – 10:30pm</span>\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"2px\" height=\"2px\" disabled_on=\"on|on|off\" _builder_version=\"3.0.77\" max_width=\"400px\" module_alignment=\"center\" custom_margin=\"||0px|\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"15px\" text_text_color=\"#ffffff\" text_letter_spacing=\"1px\" text_line_height=\"1.9em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"12px||12px|\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" locked=\"off\"]<span style=\"font-size: 15px;\"><b>SUN </b></span><span style=\"font-size: 15px;\">We are closed</span>\r[/et_pb_text][et_pb_button button_text=\"Make a Reservation\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_margin=\"30px|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"100px\" padding_left=\"5%\" padding_right=\"5%\" padding_top=\"100px\" background_color=\"#1f1f1f\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"rgba(255,255,255,0.8)\" text_line_height=\"1.8em\" header_font_size=\"24px\" text_orientation=\"center\"]<h1>Drop Us a Line</h1>\r\nDon\'t be shy. Let us know if you have any questions!\r[/et_pb_text][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" disabled_on=\"off|off|off\" _builder_version=\"3.0.96\" custom_margin=\"||80px|\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" locked=\"off\"] \r[/et_pb_button][et_pb_signup activecampaign_list=\"|none\" aweber_list=\"|none\" campaign_monitor_list=\"|none\" constant_contact_list=\"|none\" convertkit_list=\"|none\" emma_list=\"|none\" feedblitz_list=\"|none\" getresponse_list=\"|none\" hubspot_list=\"|none\" icontact_list=\"|none\" infusionsoft_list=\"|none\" madmimi_list=\"|none\" mailchimp_list=\"|null\" mailerlite_list=\"|none\" mailpoet_list=\"|none\" mailster_list=\"|none\" ontraport_list=\"|none\" salesforce_list=\"|none\" sendinblue_list=\"|none\" title=\"Our Newsletter\" button_text=\"contact us\" use_background_color=\"off\" form_field_background_color=\"#111111\" form_field_text_color=\"#ffffff\" focus_background_color=\"#111111\" focus_text_color=\"#ffffff\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_text_color=\"#ffffff\" header_line_height=\"1.8em\" body_font_size=\"17px\" body_text_color=\"rgba(255,255,255,0.8)\" body_line_height=\"1.8em\" result_message_font_size_tablet=\"51\" result_message_line_height_tablet=\"2\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_width=\"3px\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|||on|\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"2px\" use_focus_border_color=\"off\"]Dialogue is an essential part of any script\r[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:36:28", "2018-03-23 08:36:28", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206761", "1", "2018-03-23 08:40:57", "2018-03-23 08:40:57", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\" background_color=\"#efefef\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Villas\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Club House\" use_icon=\"on\" font_icon=\"%%237%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-23 08:40:57", "2018-03-23 08:40:57", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206764", "1", "2018-03-23 08:43:03", "2018-03-23 08:43:03", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\"][et_pb_row background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" _builder_version=\"3.0.96\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Enquiry\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\"]<h1>Reservations</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]This is only an enquiry regarding the villa; it does not constitute a reservation.\r\nFields (*) required.\r\n\r\n[contact-form-7 id=\"205914\" title=\"Enquiry\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" text_orientation=\"center\" custom_margin=\"||12px|\" animation_style=\"slide\" animation_direction=\"bottom\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#f7f7f7\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "ENQUIRY", "", "inherit", "closed", "closed", "", "50-revision-v1", "", "", "2018-03-23 08:43:03", "2018-03-23 08:43:03", "", "50", "http://panbilresidence.com/50-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206777", "1", "2018-03-25 14:37:50", "2018-03-25 14:37:50", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" template_type=\"section\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Form", "", "publish", "closed", "closed", "", "contact-form", "", "", "2018-03-25 14:37:50", "2018-03-25 14:37:50", "", "0", "http://panbilresidence.com/et_pb_layout/contact-form/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206780", "1", "2018-03-25 14:38:33", "2018-03-25 14:38:33", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\" text_font=\"||||||||\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 14:38:33", "2018-03-25 14:38:33", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206773", "1", "2018-03-23 08:51:03", "2018-03-23 08:51:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"54px|0px|0px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\r\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\r\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>PROUDLY SHOW YOU OUR VILLAS\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"50px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|30px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-23 08:51:03", "2018-03-23 08:51:03", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206791", "1", "2018-03-25 16:12:56", "2018-03-25 16:12:56", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" background_color=\"#e0e0e0\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 16:12:56", "2018-03-25 16:12:56", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206779", "1", "2018-03-25 14:38:26", "2018-03-25 14:38:26", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Form", "", "publish", "closed", "closed", "", "contact-form-2", "", "", "2018-03-25 14:38:26", "2018-03-25 14:38:26", "", "0", "http://panbilresidence.com/et_pb_layout/contact-form-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206789", "1", "2018-03-25 16:11:21", "2018-03-25 16:11:21", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 16:11:21", "2018-03-25 16:11:21", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206785", "1", "2018-03-25 14:42:41", "2018-03-25 14:42:41", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\"][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 14:42:41", "2018-03-25 14:42:41", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206783", "1", "2018-03-25 14:40:09", "2018-03-25 14:40:09", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row custom_padding=\"27px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|2px|0px\" background_color=\"rgba(0,0,0,0.03)\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"]&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;					        &lt;!-- [et_pb_line_break_holder] --&gt;            google.maps.event.addDomListener(window, &#039;load&#039;, function () {&lt;!-- [et_pb_line_break_holder] --&gt;                var map = new google.maps.Map(document.getElementById(&quot;srm_gmp_embed_1&quot;), {&lt;!-- [et_pb_line_break_holder] --&gt;                    center: new google.maps.LatLng(1.0907798,104.02611990000003),&lt;!-- [et_pb_line_break_holder] --&gt;                    zoom:13,&lt;!-- [et_pb_line_break_holder] --&gt;                    mapTypeId: google.maps.MapTypeId.ROADMAP,&lt;!-- [et_pb_line_break_holder] --&gt;                    scrollwheel: &#039;1&#039;&lt;!-- [et_pb_line_break_holder] --&gt;                });&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;                // To view directions form and data&lt;!-- [et_pb_line_break_holder] --&gt;                                //=========Direction view end&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;                var marker = new google.maps.Marker({&lt;!-- [et_pb_line_break_holder] --&gt;                    position: new google.maps.LatLng(1.0907798,104.02611990000003),&lt;!-- [et_pb_line_break_holder] --&gt;                    map: map,&lt;!-- [et_pb_line_break_holder] --&gt;                    animation: google.maps.Animation.DROP&lt;!-- [et_pb_line_break_holder] --&gt;                });&lt;!-- [et_pb_line_break_holder] --&gt;                marker.setMap(map);&lt;!-- [et_pb_line_break_holder] --&gt;                &lt;!-- [et_pb_line_break_holder] --&gt;            });&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;        &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;        Map DataMap data ©2018 GoogleMap DataMap data ©2018 GoogleMap data ©2018 GoogleTerms of UseReport a map errorMapTerrainSatelliteLabels&lt;!-- [et_pb_line_break_holder] --&gt;                &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;					[/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 14:40:09", "2018-03-25 14:40:09", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206794", "1", "2018-03-25 16:14:30", "2018-03-25 16:14:30", "{\n    \"et_divi[hide_primary_logo]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:14:30\"\n    },\n    \"et_divi[menu_link_active]\": {\n        \"value\": \"#996500\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:14:30\"\n    }\n}", "", "", "trash", "closed", "closed", "", "992feb4e-8068-4a72-a869-40173a656742", "", "", "2018-03-25 16:14:30", "2018-03-25 16:14:30", "", "0", "http://panbilresidence.com/992feb4e-8068-4a72-a869-40173a656742/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206795", "1", "2018-03-25 16:15:45", "2018-03-25 16:15:45", "{\n    \"et_divi[vertical_nav]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:15:04\"\n    },\n    \"et_divi[secondary_nav_font_spacing]\": {\n        \"value\": \"1\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:15:04\"\n    },\n    \"et_divi[secondary_nav_font]\": {\n        \"value\": \"Didact Gothic\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:15:45\"\n    },\n    \"et_divi[secondary_nav_font_size]\": {\n        \"value\": \"13\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:15:45\"\n    },\n    \"et_divi[secondary_nav_text_color_new]\": {\n        \"value\": \"#d89b00\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:15:45\"\n    }\n}", "", "", "trash", "closed", "closed", "", "99561742-2ed6-43da-9149-099f8137f858", "", "", "2018-03-25 16:15:45", "2018-03-25 16:15:45", "", "0", "http://panbilresidence.com/?p=206795", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206796", "1", "2018-03-25 16:16:00", "2018-03-25 16:16:00", "{\n    \"et_divi[show_header_social_icons]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:16:00\"\n    }\n}", "", "", "trash", "closed", "closed", "", "95bdffb0-9f0a-4939-a7af-a15f70c502d2", "", "", "2018-03-25 16:16:00", "2018-03-25 16:16:00", "", "0", "http://panbilresidence.com/95bdffb0-9f0a-4939-a7af-a15f70c502d2/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206793", "1", "2018-03-25 16:14:08", "2018-03-25 16:14:08", "{\n    \"et_divi[nav_fullwidth]\": {\n        \"value\": true,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-03-25 16:14:08\"\n    }\n}", "", "", "trash", "closed", "closed", "", "1c175ba3-c30c-4536-805a-4bc0f2913fc2", "", "", "2018-03-25 16:14:08", "2018-03-25 16:14:08", "", "0", "http://panbilresidence.com/1c175ba3-c30c-4536-805a-4bc0f2913fc2/", "0", "customize_changeset", "", "0");
INSERT INTO `wpj1_posts` VALUES("206799", "1", "2018-03-25 22:29:42", "2018-03-25 22:29:42", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-25 22:29:42", "2018-03-25 22:29:42", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206801", "1", "2018-03-25 22:31:26", "2018-03-25 22:31:26", "[et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\" template_type=\"section\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "SERVICES & FEATURES", "", "publish", "closed", "closed", "", "services-features", "", "", "2018-03-25 22:31:26", "2018-03-25 22:31:26", "", "0", "http://panbilresidence.com/et_pb_layout/services-features/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206810", "1", "2018-03-25 22:38:10", "2018-03-25 22:38:10", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-25 22:38:10", "2018-03-25 22:38:10", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206807", "1", "2018-03-25 22:36:52", "2018-03-25 22:36:52", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-25 22:36:52", "2018-03-25 22:36:52", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206809", "1", "2018-03-25 22:37:36", "2018-03-25 22:37:36", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-25 22:37:36", "2018-03-25 22:37:36", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206814", "1", "2018-03-25 22:48:21", "2018-03-25 22:48:21", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_color=\"rgba(0,0,0,0.03)\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/kuta/\" admin_label=\"Villa Type Kuta\" alt=\"Villa Type Kuta\" title_text=\"Villa Type Kuta\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/matoa/\" alt=\"Villa Type Matoa\" title_text=\"Villa Type Matoa\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/new-kuta/\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/new-kuta/\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/forest-house/\" alt=\"Villa Type Forest House\" title_text=\"Villa Type Forest House\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 22:48:21", "2018-03-25 22:48:21", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206813", "1", "2018-03-25 22:47:49", "2018-03-25 22:47:49", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_color=\"rgba(0,0,0,0.03)\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/kuta/\" admin_label=\"Villa Type Kuta\" alt=\"Villa Type Kuta\" title_text=\"Villa Type Kuta\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/matoa/\" alt=\"Villa Type Matoa\" title_text=\"Villa Type Matoa\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/new-kuta/\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/new-kuta/\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 22:47:49", "2018-03-25 22:47:49", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206820", "1", "2018-03-25 22:52:08", "2018-03-25 22:52:08", "[et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row]", "Type Apartments", "", "publish", "closed", "closed", "", "type-apartments", "", "", "2018-03-25 22:52:08", "2018-03-25 22:52:08", "", "0", "http://panbilresidence.com/et_pb_layout/type-apartments/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206816", "1", "2018-03-25 22:50:20", "2018-03-25 22:50:20", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_color=\"rgba(0,0,0,0.03)\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/kuta/\" admin_label=\"Villa Type Kuta\" alt=\"Villa Type Kuta\" title_text=\"Villa Type Kuta\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/matoa/\" alt=\"Villa Type Matoa\" title_text=\"Villa Type Matoa\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/new-kuta/\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/new-kuta/\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/forest-house/\" alt=\"Villa Type Forest House\" title_text=\"Villa Type Forest House\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/jimbaran/\" alt=\"Villa Type Jimbaran\" title_text=\"Villa Type Jimbaran\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/sanur/\" alt=\"Villa Type Sanur\" title_text=\"Villa Type Sanur\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" _builder_version=\"3.0.96\" url=\"http://panbilresidence.com/jimbaran/\" alt=\"http://panbilresidence.com/jimbaran/\" title_text=\"http://panbilresidence.com/jimbaran/\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6720.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6809.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6770.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6779.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 22:50:20", "2018-03-25 22:50:20", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206818", "1", "2018-03-25 22:51:03", "2018-03-25 22:51:03", "[et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row]", "Type Apartment", "", "publish", "closed", "closed", "", "type-apartment", "", "", "2018-03-25 22:51:03", "2018-03-25 22:51:03", "", "0", "http://panbilresidence.com/et_pb_layout/type-apartment/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206827", "1", "2018-03-26 00:06:13", "2018-03-26 00:06:13", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"75px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"81px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" global_module=\"206820\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-26 00:06:13", "2018-03-26 00:06:13", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206823", "1", "2018-03-25 22:52:54", "2018-03-25 22:52:54", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\" template_type=\"section\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" global_module=\"206820\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Type Apartments", "", "publish", "closed", "closed", "", "type-apartments-2", "", "", "2018-03-25 22:52:54", "2018-03-25 22:52:54", "", "0", "http://panbilresidence.com/et_pb_layout/type-apartments-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wpj1_posts` VALUES("206826", "1", "2018-03-25 23:17:03", "2018-03-25 23:17:03", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\"][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Mini-Garden-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>Hotel Like Amenities With The Comfort of a Private Home</p>[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-3.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][et_pb_slide heading=\"PANBIL RESIDENCE APARTMENT\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architectoeaque ipsa quae ab illo inventore.\r[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"12px||14px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"48px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Check Availability\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0px\" button_letter_spacing=\"0px\" button_font=\"||||||||\"][et_pb_contact_field field_id=\"Check_In\" field_title=\"Check in\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Check_Out\" field_title=\"Check Out\" field_type=\"email\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 20%;||Margin-top: -1.5%;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Adult\" field_title=\"Adult\" field_type=\"select\" select_options=\"%91{%22value%22:%221%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:4}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 18%;||Float: left;||Margin-top: -1.5%;||Clear: none !important;\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Children\" field_title=\"Children\" field_type=\"select\" select_options=\"%91{%22value%22:%220%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%221%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%222%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%223%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%224%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%225%22,%22checked%22:0,%22dragID%22:5}%93\" _builder_version=\"3.0.96\" border_radii=\"on||||\" custom_css_main_element=\"Max-width: 17%;||Margin-top: -1.5%;||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Kolam-Renang-2.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Apartment\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Why it\'s The Best</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access.</p>\r\n<p>Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool</p>\r\n<p>with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate.</p>\r\n<p>Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" global_module=\"206820\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Wide Variety of Choice\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Lovely Environment\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Room\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Swimming Pool\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Restaurant\" use_icon=\"on\" font_icon=\"%%154%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]Phasellus ac massa justo. Pellentesque porttitor, ex nec dignissim congue, ex enim fermentum nunc, quis sagittis velit.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n 	<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "APARTMENT", "", "inherit", "closed", "closed", "", "53-revision-v1", "", "", "2018-03-25 23:17:03", "2018-03-25 23:17:03", "", "53", "http://panbilresidence.com/53-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206825", "1", "2018-03-25 22:54:00", "2018-03-25 22:54:00", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider show_inner_shadow=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\" parallax=\"on\" border_color_all=\"#a5a000\" border_style_all=\"none\" custom_margin=\"|||\" custom_padding=\"||700px|\" animation_style=\"fade\" animation_duration=\"50ms\" auto=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-12.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Fasilitas-Apartment-Gym-4.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-19.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6716.jpg\"][/et_pb_slide][et_pb_slide _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9501.jpg\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-9.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/01/Rectangle-5-bitmap.jpg\" background_blend=\"screen\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"23px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" text_orientation=\"center\"]<h2 style=\"text-align: center;\"><strong><img class=\"wp-image-82 alignnone size-full\" src=\"wp-content/uploads/2018/01/PSR.png\" alt=\"\" width=\"306\" height=\"301\" /></strong></h2>\n<h2 style=\"text-align: center;\"><strong>VILLA SERVICES<br /> </strong></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|54px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.96\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Nestled amongst the dense greenery in Muka Kuning, Villa Panbil is the perfect sanctuary where privacy and serenity is ensured. Green, exquisite and safe, this perfect combinations is one that is unique to Villa Panbil. With the generous options of modern minimalist styled homes to the resort-like Balinese villas, you will undoubtedly find a property that is ideal for your needs and likings.</p>\n<p style=\"text-align: center;\">Established in 2011, PT Panbil Service Residence is the leader in offering professional Property Management in Batam, Indonesia. With tenants ranging from MNCs to individuals, the wide diversity of our clients allow us to adapt our services meet our client’s specific needs.</p>\n<p style=\"text-align: center;\">In PT Panbil Service Residence, it is of our utmost priority to esnure our tenants’ comfort and satisfaction; our comprehensive team of on-site Maintnenace and Customer Service will ensure that your issues will be handled with just a phone call away, and our Account Managers will guarantee that any of your moving-in adminstration and arrangement will be hassle-free</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" background_color_gradient_direction=\"40deg\" background_blend=\"multiply\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_color=\"rgba(0,0,0,0.03)\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/J12B.1-1-of-1.jpg\" alt=\"Villa Type Kuta\" title_text=\"Villa Type Kuta\" url=\"http://panbilresidence.com/kuta/\" admin_label=\"Villa Type Kuta\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/O18.2-1-of-1.jpg\" alt=\"Villa Type Matoa\" title_text=\"Villa Type Matoa\" url=\"http://panbilresidence.com/matoa/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q05.5-1-of-1.jpg\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\" url=\"http://panbilresidence.com/new-kuta/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/Q12B.1-1-of-1.jpg\" alt=\"Villa Type New Kuta\" title_text=\"Villa Type New Kuta\" url=\"http://panbilresidence.com/new-kuta/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_right_1=\"3px\" padding_right_2=\"3px\" padding_left_2=\"3px\" padding_right_3=\"3px\" padding_left_3=\"3px\" padding_left_4=\"3px\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/DD.2-1-of-1.jpg\" alt=\"Villa Type Forest House\" title_text=\"Villa Type Forest House\" url=\"http://panbilresidence.com/forest-house/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R27-1-of-1.jpg\" alt=\"Villa Type Jimbaran\" title_text=\"Villa Type Jimbaran\" url=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" padding_right=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/S6.2-1-of-1.jpg\" alt=\"Villa Type Sanur\" title_text=\"Villa Type Sanur\" url=\"http://panbilresidence.com/sanur/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_left=\"3px\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/R6-1-of-1.jpg\" alt=\"http://panbilresidence.com/jimbaran/\" title_text=\"http://panbilresidence.com/jimbaran/\" url=\"http://panbilresidence.com/jimbaran/\" _builder_version=\"3.0.96\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\"]<p style=\"text-align: center;\"><img class=\"wp-image-38 alignnone size-full\" src=\"http://panbilresidence.com/wp-content/uploads/2018/01/LOGO-redesain.png\" alt=\"\" width=\"486\" height=\"340\" /></p>\r\n\r\n<h2 style=\"text-align: center;\"><strong>APARTMENT SERVICES\r\n</strong></h2>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\"]<p style=\"text-align: center;\">Located in the middle of Batam Island and nestled in the pockets of lush greenery, Panbil Residence Apartment features modern and minimalist style. The property offers  studio to three-bedroom options, which comes with a fully equipped kitchen and broadband access. Panbil Service Apartment is well appreciated for its spaciousness and tranquility.The guests can enjoy the wide range of facilities including spectacular roof top bar and restaurant, infinity swimming pool with breathtaking reservior view, whirpool, steam and sauna which offer therapeutic ways to rejuvenate. Whether for business or leisure, our fully furnished apartment is a perfect choice for guest who wants to experience comfort of stay.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" module_class=\"five-columns\" _builder_version=\"3.0.96\" global_module=\"206820\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" custom_margin=\"|||\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-deluxe/\" ds-title=\"Studio Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Studio-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/studio-executive/\" ds-title=\"Studio Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-10.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-deluxe/\" ds-title=\"Two Bedroom Deluxe\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Two-Bedroom-Deluxe-6.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/two-bedroom-executive/\" ds-title=\"Two Bedroom Executive\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Two-Bedroom-Executive-20.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]<a class=\"ds-hover-1\" href=\"http://panbilresidence.com/three-bedroom/\" ds-title=\"Three Bedroom\" ds-desc=\"MORE DETAILS\"><img src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Three-Bedroom-17.jpg\" alt=\"Alt text Here\" /></a>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2018-03-25 22:54:00", "2018-03-25 22:54:00", "", "43", "http://panbilresidence.com/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206834", "1", "2018-03-26 06:07:00", "2018-03-26 06:07:00", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" custom_padding=\"40%|||\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-5.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-11.jpg\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Studio-Executive-1-1.jpg\" background_position=\"center_right\" custom_button=\"off\" button_on_hover=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\"]<h1>Studio executive</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" header_3_text_color=\"#c39d63\" text_orientation=\"right\" custom_margin=\"||5px|\"]<h3 class=\"_1eDWt\">Impressive <span class=\"_3LOP9\">8.5</span>/10</h3>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||||||\" header_font=\"||||||||\" text_orientation=\"right\" custom_margin=\"-10px|||\" custom_padding=\"|||\"]According to 10 guests\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||0px|\" custom_margin=\"|||\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#bfbfbf\" header_4_text_color=\"#bfbfbf\" custom_margin=\"||5px|\" custom_padding=\"|||\"]<h4>Studio Executive Description</h4>[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" custom_margin=\"||0px|\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.96\"]<p class=\"western\" align=\"justify\"><span lang=\"id-ID\">Completed with the Garden view, this 45 sq. meter room is designed with elegant interior decoration, a coffee table and chair and high quality bed linen. Relax in the comfortable bed, while connecting to the complimentary high speed internet.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f1f1f\" _builder_version=\"3.0.96\" custom_padding=\"83px|0px|51.3594px|0px\"][et_pb_row _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" text_orientation=\"center\" custom_margin=\"||12px|\"]Services & Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residence Features\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Fully furnished residence with separate living,</span> <span lang=\"id-ID\">dining, kitchen and bedroom areas</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Bathrooms with separate water heaters</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Private balcony</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Bathroom amenities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Wi-Fi access*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">LED TV with selected cable channels</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Secured lift access</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Modern and well-equipped kitchen</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">In-room personal safe</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Leisure Amenities\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 fully-equipped gym</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Whirlpool</span>/ Jacuzzi</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Steam and sauna facilities</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Infnity swimming pool</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Spacious </span>Lobby <span lang=\"id-ID\">Lounge</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Salon &amp; Spa</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Karaoke Lounge</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Roof Top Bar</p>\r\n</li>\r\n<li>\r\n<p class=\"western\">Supermarket</p>\r\n</li>\r\n</ul>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Service & Offering\" use_icon=\"on\" font_icon=\"%%113%%\" icon_color=\"#c39d63\" icon_placement=\"left\" _builder_version=\"3.0.96\" header_font=\"|700|||||||\" header_text_color=\"#ffffff\"]<ul>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">24/7 </span>Front Desk<span lang=\"id-ID\"> service</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">24/7 security and CCTV surveillance</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily housekeeping services*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Daily breakfast*</p>\r\n</li>\r\n<li>\r\n<p class=\"western\"><span lang=\"id-ID\">Scheduled shuttle service to key businesses</span> area <span lang=\"id-ID\">and shopping districts</span></p>\r\n</li>\r\n<li>\r\n<p class=\"western\" lang=\"id-ID\">Laundry and dry cleaning services*</p>\r\n</li>\r\n</ul>\r\n<p class=\"western\" lang=\"id-ID\">*Charges may apply</p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\" custom_padding=\"0px||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" _builder_version=\"3.0.96\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"206432,206429,206435,206430,206428,206422,206426,206425,206418,206417,206421,206419\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#c39d63\" hover_icon=\"%%51%%\" _builder_version=\"3.0.96\" pagination_font_size_tablet=\"51\" pagination_line_height_tablet=\"2\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Batam Center, Batam</p>\n<p style=\"text-align: center;\">Indonesia</p>\n<p>Tel: +62 778 480 8888</p>\n<p>Fax: +62 778 480 9999</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e0e0e0\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "Studio Executive", "", "inherit", "closed", "closed", "", "206672-revision-v1", "", "", "2018-03-26 06:07:00", "2018-03-26 06:07:00", "", "206672", "http://panbilresidence.com/206672-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wpj1_posts` VALUES("206845", "1", "2018-03-26 06:30:50", "2018-03-26 06:30:50", "[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_fullwidth_slider _builder_version=\"3.0.96\" body_font=\"||||||||\"][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(12,12,12,0.6)\" _builder_version=\"3.0.96\" body_font=\"||||||||\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-8.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-16.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][et_pb_slide heading=\"VILLA PANBIL SERVICE RESIDENCE\" use_bg_overlay=\"off\" use_text_overlay=\"on\" text_overlay_color=\"rgba(31,31,31,0.6)\" _builder_version=\"3.0.96\" background_image=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" custom_button=\"off\" button_on_hover=\"on\"]<p>our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Our Story\" _builder_version=\"3.0.77\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" padding_top_2=\"60px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_9521.jpg\" always_center_on_mobile=\"off\" _builder_version=\"3.0.96\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" saved_tabs=\"all\" locked=\"off\"]The Villas\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" saved_tabs=\"all\" locked=\"off\"] \r[/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>How You Wonderfully Live</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"17px\" text_text_color=\"#939393\" text_line_height=\"1.8em\" header_font=\"||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\"]<p>Our comprehensive services include on-site management, maintenance, and round-the-clock security. Our professional on-site Customer Service Managers are readily available to attend to requests and queries of tenants. Additionally, our experienced Maintenance Department liaises closely with the on-site managers to ensure that all queries are promptly dealt with. It is our mission to always provide timely and functional responses as tenants\' satisfaction is of our utmost priority.</p>\n<p>Nestled amongst the dense greeneries in Muka Kuning, our fully furnished properties are the perfect sanctuary for those seeking tranquility. Green, exquisite and safe; this perfect combination of ambience, design and security is one that is unique to Villa Panbil. From the minimalist homes, to the resort-like Balinese inspired villas, you will undoubtedly find a property that is ideal to your needs and likings. Within our residential area, tenants may enjoy a range of facilities and amenities from gym and swimming pool to beauty salon, café and a supermarket.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.96\"][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/matoa-5.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Matoa</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_text_align=\"center\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/matoa/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Kuta-2.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"2 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Forest-House-7.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Forest House</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/forest-house/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.96\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-New-Kuta-3.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa New Kuta</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/new-kuta/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Sanur-9.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Sanur</h1>\r[/et_pb_text][et_pb_blurb title=\"3 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"2 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"3 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/sanur/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/03/Type-Jimbaran-Ubud-15.jpg\" _builder_version=\"3.0.96\"] \r[/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_orientation=\"center\"]<h1>Villa Jimbaran</h1>\r[/et_pb_text][et_pb_blurb title=\"4 Bedroom\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Bathroom\" use_icon=\"on\" font_icon=\"%%133%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"4 Walk in Closet\" use_icon=\"on\" font_icon=\"%%77%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Kitchen\" use_icon=\"on\" font_icon=\"%%114%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px||15px|\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_blurb title=\"1 Lounge\" use_icon=\"on\" font_icon=\"%%89%%\" icon_color=\"#c39d63\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"16px\" _builder_version=\"3.0.96\" header_font_size=\"14px\" header_line_height=\"1.3em\" body_text_align=\"left\" body_font_size=\"12px\" body_text_color=\"#939393\" body_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"-25px|||\" custom_padding=\"|||\" custom_css_blurb_image=\"width: 0;\"][/et_pb_blurb][et_pb_button button_url=\"http://panbilresidence.com/jimbaran/\" button_text=\"More details\" button_alignment=\"center\" _builder_version=\"3.0.96\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#c39d63\" button_border_color=\"#c39d63\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"|||on|||||\" button_use_icon=\"off\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\"] \r[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#efefef\" admin_label=\"Features\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|0px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" admin_label=\"row\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Features\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" disabled_on=\"on|on|off%22%22%22%22%22\" _builder_version=\"3.0.77\" max_width=\"60px\" module_alignment=\"center\" custom_margin=\"||10px|\" locked=\"off\"] \r[/et_pb_divider][et_pb_text _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_text_align=\"center\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" locked=\"off\"]<h1>What We Offer</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|27px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"On-Site Maintenance\" use_icon=\"on\" font_icon=\"%%236%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]<p>Our Maintenance team is always around to attend to any of your urgent requests. With a comprehensive team that oversees all aspects of the building structures and facilities, our Managers on standby will be ready to help you with requests from electrical, building and landscape maintenance to even building facilities such as Internet connection problems, pests control etc.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Facilities\" use_icon=\"on\" font_icon=\"%%141%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Our Club House comes withan infinity pool and a lifeguard on duty. The pool side cafe serves varieties of Western, Indonesian and comfort food that alsooffers deliveryoptions, and bar with live music on weekend evenings. The open-air poolside cafe makes for a relaxing place for lazy afternoon lunch, or even to chill-out over a bottle of wine on the weekend nights. You may also find the gym within the Club House. The Edelweiss Supermarket located within the Villa compound caters to your groceries needs. Other facilities available within the Estate include Laundry, Massage and Spa Salon, and a rooftop bar</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"Fully Furnished Villas\" use_icon=\"on\" font_icon=\"%%151%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" locked=\"off\"]<p>Our villas are fully furnished with separate living, dining, kitchen and bedroom areas. The kitchens are extensively equipped, all rooms are fully-air conditioned, and bathrooms are equipped with water heaterto ensure your total comfort. We also provide washing machines, bedding sets, towels, cookeries and other little things you need to feel at home.</p>\n<p style=\"line-height: 150%; background: white; margin: 0in 0in 13.2pt 0in;\">\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1280px\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"49px|||\" custom_padding_phone=\"19px|||\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.77\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_blurb title=\"24 Hour Security\" use_icon=\"on\" font_icon=\"%%173%%\" icon_color=\"#c39d63\" use_icon_font_size=\"on\" icon_font_size=\"64px\" _builder_version=\"3.0.96\" header_font_size=\"24px\" header_line_height=\"1.7em\" body_font_size=\"17px\" body_text_color=\"#939393\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\"]<p>Villa Panbil is the only residential estate in Batam with the Government status of <em>National Vital Object</em>. Security is provided around the clock in our non-gated residential compound with hourly patrols and guard posts to ensure a safe living environment for our residents</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.03)\" admin_label=\"Contact\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" custom_padding=\"100px|0px|100px|0px\" saved_tabs=\"all\" collapsed=\"off\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" background_color_2=\"#ffffff\" padding_top_2=\"40px\" padding_right_2=\"40px\" padding_bottom_2=\"40px\" padding_left_2=\"40px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.96\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_divider color=\"#c39d63\" show_divider=\"on\" divider_weight=\"3px\" _builder_version=\"3.0.96\" max_width=\"60px\" module_alignment=\"left\" custom_margin=\"||10px|\" locked=\"off\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.0.96\" text_font=\"||||\" text_text_color=\"#1f1f1f\" header_font_size=\"48px\" header_text_color=\"#1f1f1f\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Get in Touch</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\"]Fields (*) required.\r\n\r\n[contact-form-7 id=\"205901\" title=\"Contact form 1\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"40px\" padding_left=\"40px\" padding_right=\"40px\" padding_top=\"40px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://panbilresidence.com/wp-content/uploads/2018/01/MG_6619.jpg\" _builder_version=\"3.0.96\" custom_margin=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.96\" text_font=\"|700||on|||||\" text_text_color=\"#bfbfbf\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Contact\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_font_size=\"24px\" text_text_color=\"#1f1f1f\" text_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Jl. Jendral Ahmad Yani, Muka Kuning\r[/et_pb_text][et_pb_text _builder_version=\"3.0.96\" text_text_color=\"#999999\" text_letter_spacing=\"1px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||12px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]Batam Center, Batam\r\n<p style=\"text-align: center;\">Indonesia</p>\r\nTel: (0778) 371333\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.96\" custom_padding=\"0px|0px|0px|0px\"][et_pb_fullwidth_code _builder_version=\"3.0.96\"][gmap-embed id=&quot;206727&quot;][/et_pb_fullwidth_code][/et_pb_section]", "VILLA", "", "inherit", "closed", "closed", "", "55-revision-v1", "", "", "2018-03-26 06:30:50", "2018-03-26 06:30:50", "", "55", "http://panbilresidence.com/55-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wpj1_term_relationships */
INSERT INTO `wpj1_term_relationships` VALUES("1", "1", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3905", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("59", "2", "0");
INSERT INTO `wpj1_term_relationships` VALUES("60", "2", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205495", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("72", "2", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206758", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("64", "2", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205495", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3905", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3905", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3904", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3904", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3904", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3903", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3903", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3903", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3902", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3902", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3902", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3901", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3901", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3901", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3900", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3900", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3900", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3899", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3899", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3899", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3898", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3898", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3898", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3897", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3897", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3897", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3896", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3896", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3896", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3918", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3918", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("3918", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205400", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205400", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205400", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205399", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205399", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205399", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205398", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205398", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205398", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205397", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205397", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205397", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205396", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205396", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205396", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205395", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205395", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205395", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205394", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205394", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205394", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30243", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30243", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30243", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30228", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30228", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30228", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30217", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30217", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30217", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30218", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30218", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30218", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30214", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30214", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30214", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30213", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30213", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30213", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30251", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30251", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("30251", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("524", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("524", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("524", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205456", "6", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205456", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205456", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205469", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205469", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205469", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205478", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205478", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205478", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205495", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205516", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205516", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205516", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205520", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205520", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205520", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205569", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205569", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205569", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205835", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205835", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205835", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205840", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205840", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205840", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205841", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205841", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205841", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205860", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205860", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205860", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("205892", "2", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206060", "10", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206060", "24", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206060", "25", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206063", "26", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206070", "28", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206073", "29", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206101", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206101", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206101", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206206", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206206", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206206", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206218", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206218", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206218", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206357", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206363", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206365", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206367", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206369", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206371", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206373", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206375", "31", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206379", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206379", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206379", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206442", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206442", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206442", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206444", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206444", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206444", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206445", "6", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206445", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206445", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206467", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206467", "8", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206467", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206469", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206469", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206469", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206475", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206475", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206475", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206477", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206477", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206477", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206478", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206478", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206478", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206507", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206507", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206507", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206508", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206508", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206508", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206509", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206509", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206509", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206547", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206547", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206547", "58", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206557", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206557", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206557", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206636", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206636", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206636", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206662", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206662", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206662", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206671", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206671", "3", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206671", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206709", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206709", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206709", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206758", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206758", "58", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206767", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206767", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206767", "58", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206777", "6", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206777", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206777", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206779", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206779", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206779", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206797", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206797", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206797", "58", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206801", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206801", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206801", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206818", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206818", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206818", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206820", "6", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206820", "9", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206820", "5", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206823", "4", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206823", "7", "0");
INSERT INTO `wpj1_term_relationships` VALUES("206823", "5", "0");

/* INSERT TABLE DATA: wpj1_term_taxonomy */
INSERT INTO `wpj1_term_taxonomy` VALUES("1", "1", "category", "", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("2", "2", "nav_menu", "", "0", "5");
INSERT INTO `wpj1_term_taxonomy` VALUES("3", "3", "layout_type", "", "0", "30");
INSERT INTO `wpj1_term_taxonomy` VALUES("4", "4", "scope", "", "0", "63");
INSERT INTO `wpj1_term_taxonomy` VALUES("5", "5", "module_width", "", "0", "63");
INSERT INTO `wpj1_term_taxonomy` VALUES("6", "6", "scope", "", "0", "4");
INSERT INTO `wpj1_term_taxonomy` VALUES("7", "7", "layout_type", "", "0", "21");
INSERT INTO `wpj1_term_taxonomy` VALUES("8", "8", "layout_type", "", "0", "7");
INSERT INTO `wpj1_term_taxonomy` VALUES("9", "9", "layout_type", "", "0", "9");
INSERT INTO `wpj1_term_taxonomy` VALUES("10", "10", "product_type", "", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("11", "11", "product_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("12", "12", "product_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("13", "13", "product_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("14", "14", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("15", "15", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("16", "16", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("17", "17", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("18", "18", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("19", "19", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("20", "20", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("21", "21", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("22", "22", "product_visibility", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("23", "23", "product_cat", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("24", "24", "product_cat", "", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("25", "25", "product_tag", "", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("26", "26", "product_cat", "This is where your description of this category would go.", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("27", "27", "pa_testSlug", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("28", "28", "property_city", "", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("29", "29", "location", "", "0", "1");
INSERT INTO `wpj1_term_taxonomy` VALUES("31", "31", "project_category", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("32", "32", "wpbooking_amenity", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("33", "33", "wpbooking_amenity", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("34", "34", "wpbooking_amenity", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("35", "35", "wpbooking_amenity", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("36", "36", "wb_hotel_room_facilities", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("37", "37", "wb_hotel_room_facilities", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("38", "38", "wb_hotel_room_facilities", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("39", "39", "wb_hotel_room_facilities", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("40", "40", "wpbooking_location", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("41", "41", "wpbooking_location", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("42", "42", "wpbooking_location", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("43", "43", "wpbooking_location", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("44", "44", "wpbooking_location", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("45", "45", "wb_tour_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("46", "46", "wb_tour_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("47", "47", "wb_tour_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("48", "48", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("49", "49", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("50", "50", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("51", "51", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("52", "52", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("53", "53", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("54", "54", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("55", "55", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("56", "56", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("57", "57", "wb_hotel_room_type", "", "0", "0");
INSERT INTO `wpj1_term_taxonomy` VALUES("58", "58", "module_width", "", "0", "4");

/* INSERT TABLE DATA: wpj1_termmeta */
INSERT INTO `wpj1_termmeta` VALUES("1", "24", "order", "0");
INSERT INTO `wpj1_termmeta` VALUES("2", "24", "product_count_product_cat", "1");
INSERT INTO `wpj1_termmeta` VALUES("3", "25", "product_count_product_tag", "1");
INSERT INTO `wpj1_termmeta` VALUES("4", "23", "upcp_ID", "2");
INSERT INTO `wpj1_termmeta` VALUES("5", "24", "upcp_ID", "3");
INSERT INTO `wpj1_termmeta` VALUES("6", "25", "upcp_ID", "1");
INSERT INTO `wpj1_termmeta` VALUES("7", "26", "order", "0");
INSERT INTO `wpj1_termmeta` VALUES("8", "26", "thumbnail_id", "");
INSERT INTO `wpj1_termmeta` VALUES("9", "26", "upcp_equivalent", "Category");
INSERT INTO `wpj1_termmeta` VALUES("10", "26", "upcp_ID", "1");
INSERT INTO `wpj1_termmeta` VALUES("11", "26", "product_count_product_cat", "1");
INSERT INTO `wpj1_termmeta` VALUES("12", "27", "upcp_term_value", "1");
INSERT INTO `wpj1_termmeta` VALUES("13", "27", "upcp_term_CF_ID", "1");

/* INSERT TABLE DATA: wpj1_terms */
INSERT INTO `wpj1_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wpj1_terms` VALUES("2", "Primary Menu", "primary-menu", "0");
INSERT INTO `wpj1_terms` VALUES("3", "layout", "layout", "0");
INSERT INTO `wpj1_terms` VALUES("4", "not_global", "not_global", "0");
INSERT INTO `wpj1_terms` VALUES("5", "regular", "regular", "0");
INSERT INTO `wpj1_terms` VALUES("6", "global", "global", "0");
INSERT INTO `wpj1_terms` VALUES("7", "section", "section", "0");
INSERT INTO `wpj1_terms` VALUES("8", "module", "module", "0");
INSERT INTO `wpj1_terms` VALUES("9", "row", "row", "0");
INSERT INTO `wpj1_terms` VALUES("10", "simple", "simple", "0");
INSERT INTO `wpj1_terms` VALUES("11", "grouped", "grouped", "0");
INSERT INTO `wpj1_terms` VALUES("12", "variable", "variable", "0");
INSERT INTO `wpj1_terms` VALUES("13", "external", "external", "0");
INSERT INTO `wpj1_terms` VALUES("14", "exclude-from-search", "exclude-from-search", "0");
INSERT INTO `wpj1_terms` VALUES("15", "exclude-from-catalog", "exclude-from-catalog", "0");
INSERT INTO `wpj1_terms` VALUES("16", "featured", "featured", "0");
INSERT INTO `wpj1_terms` VALUES("17", "outofstock", "outofstock", "0");
INSERT INTO `wpj1_terms` VALUES("18", "rated-1", "rated-1", "0");
INSERT INTO `wpj1_terms` VALUES("19", "rated-2", "rated-2", "0");
INSERT INTO `wpj1_terms` VALUES("20", "rated-3", "rated-3", "0");
INSERT INTO `wpj1_terms` VALUES("21", "rated-4", "rated-4", "0");
INSERT INTO `wpj1_terms` VALUES("22", "rated-5", "rated-5", "0");
INSERT INTO `wpj1_terms` VALUES("23", "Uncategorized", "uncategorized", "0");
INSERT INTO `wpj1_terms` VALUES("24", "Villa", "villa", "0");
INSERT INTO `wpj1_terms` VALUES("25", "villa", "villa", "0");
INSERT INTO `wpj1_terms` VALUES("26", "Sample Category", "sample-category", "0");
INSERT INTO `wpj1_terms` VALUES("27", "1", "1", "0");
INSERT INTO `wpj1_terms` VALUES("28", "Batam", "batam", "0");
INSERT INTO `wpj1_terms` VALUES("29", "Batam", "batam", "0");
INSERT INTO `wpj1_terms` VALUES("31", "Villa Forest House Facilities", "villa-type-facilities", "0");
INSERT INTO `wpj1_terms` VALUES("32", "Air Conditioning", "air-conditioning", "0");
INSERT INTO `wpj1_terms` VALUES("33", "Breakfast", "breakfast", "0");
INSERT INTO `wpj1_terms` VALUES("34", "Buzzer/Wireless Intercom", "buzzer-wireless-intercom", "0");
INSERT INTO `wpj1_terms` VALUES("35", "Cable TV", "cable-tv", "0");
INSERT INTO `wpj1_terms` VALUES("36", "Alarm clock", "alarm-clock", "0");
INSERT INTO `wpj1_terms` VALUES("37", "Bathroom", "bathroom", "0");
INSERT INTO `wpj1_terms` VALUES("38", "iPod dock", "ipod-dock", "0");
INSERT INTO `wpj1_terms` VALUES("39", "Laptop safe", "laptop-safe", "0");
INSERT INTO `wpj1_terms` VALUES("40", "Italy", "italy", "0");
INSERT INTO `wpj1_terms` VALUES("41", "Germany", "germany", "0");
INSERT INTO `wpj1_terms` VALUES("42", "United States", "united-states", "0");
INSERT INTO `wpj1_terms` VALUES("43", "Russia", "russia", "0");
INSERT INTO `wpj1_terms` VALUES("44", "Paris", "paris", "0");
INSERT INTO `wpj1_terms` VALUES("45", "City trips", "city-trips", "0");
INSERT INTO `wpj1_terms` VALUES("46", "Ecotourism", "ecotourism", "0");
INSERT INTO `wpj1_terms` VALUES("47", "Sightseeing", "sightseeing", "0");
INSERT INTO `wpj1_terms` VALUES("48", "Apartment", "apartment", "0");
INSERT INTO `wpj1_terms` VALUES("49", "Bed in Dormitory", "bed-in-dormitory", "0");
INSERT INTO `wpj1_terms` VALUES("50", "Dormitory room", "dormitory-room", "0");
INSERT INTO `wpj1_terms` VALUES("51", "Double", "double", "0");
INSERT INTO `wpj1_terms` VALUES("52", "Family", "family", "0");
INSERT INTO `wpj1_terms` VALUES("53", "Single", "single", "0");
INSERT INTO `wpj1_terms` VALUES("54", "Suite", "suite", "0");
INSERT INTO `wpj1_terms` VALUES("55", "Triple", "triple", "0");
INSERT INTO `wpj1_terms` VALUES("56", "Twin", "twin", "0");
INSERT INTO `wpj1_terms` VALUES("57", "Twin/Double", "twin-double", "0");
INSERT INTO `wpj1_terms` VALUES("58", "fullwidth", "fullwidth", "0");

/* INSERT TABLE DATA: wpj1_usermeta */
INSERT INTO `wpj1_usermeta` VALUES("1", "1", "nickname", "admin");
INSERT INTO `wpj1_usermeta` VALUES("2", "1", "first_name", "");
INSERT INTO `wpj1_usermeta` VALUES("3", "1", "last_name", "");
INSERT INTO `wpj1_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wpj1_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wpj1_usermeta` VALUES("6", "1", "syntax_highlighting", "true");
INSERT INTO `wpj1_usermeta` VALUES("7", "1", "comment_shortcuts", "false");
INSERT INTO `wpj1_usermeta` VALUES("8", "1", "admin_color", "fresh");
INSERT INTO `wpj1_usermeta` VALUES("9", "1", "use_ssl", "0");
INSERT INTO `wpj1_usermeta` VALUES("10", "1", "show_admin_bar_front", "true");
INSERT INTO `wpj1_usermeta` VALUES("11", "1", "locale", "");
INSERT INTO `wpj1_usermeta` VALUES("12", "1", "wpj1_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wpj1_usermeta` VALUES("13", "1", "wpj1_user_level", "10");
INSERT INTO `wpj1_usermeta` VALUES("14", "1", "dismissed_wp_pointers", "theme_editor_notice,upcp_admin_pointers_tutorial-one,upcp_admin_pointers_tutorial-two,upcp_admin_pointers_tutorial-three,upcp_admin_pointers_tutorial-four,upcp_admin_pointers_tutorial-five,upcp_admin_pointers_tutorial-six");
INSERT INTO `wpj1_usermeta` VALUES("15", "1", "default_password_nag", "");
INSERT INTO `wpj1_usermeta` VALUES("16", "1", "show_welcome_panel", "0");
INSERT INTO `wpj1_usermeta` VALUES("17", "1", "session_tokens", "a:5:{s:64:\"2db7c1d7dd89e69521606aa9771ba75bf1ab8c9301b958a805e9c88b2d82a55c\";a:4:{s:10:\"expiration\";i:1522157716;s:2:\"ip\";s:14:\"120.188.32.228\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1521984916;}s:64:\"77be3e869b6c60ec2b9995b780fc942f94d00ee20198ee334713513893b8ce57\";a:4:{s:10:\"expiration\";i:1522189468;s:2:\"ip\";s:14:\"120.188.32.228\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1522016668;}s:64:\"48a446e0b8c50c1bb2c9e3792fd58dcad08c53fe0412438a25dd98bcd195a3dc\";a:4:{s:10:\"expiration\";i:1522217005;s:2:\"ip\";s:14:\"120.188.32.228\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1522044205;}s:64:\"1612b680bb6d56a159365e4bddb0cca06fff6287c64954aeecefddd2a57ee358\";a:4:{s:10:\"expiration\";i:1522217029;s:2:\"ip\";s:14:\"120.188.32.228\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1522044229;}s:64:\"64aefcfdd0db1d0e0f6510c16705b1f5f8dd1e82941cd577eae2c26379481867\";a:4:{s:10:\"expiration\";i:1522285423;s:2:\"ip\";s:14:\"120.188.32.228\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1522112623;}}");
INSERT INTO `wpj1_usermeta` VALUES("18", "1", "wpj1_dashboard_quick_press_last_post_id", "206774");
INSERT INTO `wpj1_usermeta` VALUES("19", "1", "community-events-location", "a:1:{s:2:\"ip\";s:12:\"120.188.32.0\";}");
INSERT INTO `wpj1_usermeta` VALUES("20", "1", "wpj1_user-settings", "libraryContent=browse&editor=tinymce&imgsize=full");
INSERT INTO `wpj1_usermeta` VALUES("21", "1", "wpj1_user-settings-time", "1521787938");
INSERT INTO `wpj1_usermeta` VALUES("22", "1", "managenav-menuscolumnshidden", "a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}");
INSERT INTO `wpj1_usermeta` VALUES("23", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}");
INSERT INTO `wpj1_usermeta` VALUES("24", "1", "nav_menu_recently_edited", "2");
INSERT INTO `wpj1_usermeta` VALUES("27", "1", "closedpostboxes_page", "a:0:{}");
INSERT INTO `wpj1_usermeta` VALUES("28", "1", "metaboxhidden_page", "a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}");
INSERT INTO `wpj1_usermeta` VALUES("25", "1", "closedpostboxes_dashboard", "a:4:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:21:\"dashboard_quick_press\";i:3;s:17:\"dashboard_primary\";}");
INSERT INTO `wpj1_usermeta` VALUES("26", "1", "metaboxhidden_dashboard", "a:4:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:21:\"dashboard_quick_press\";i:3;s:17:\"dashboard_primary\";}");
INSERT INTO `wpj1_usermeta` VALUES("30", "1", "_woocommerce_persistent_cart_1", "a:1:{s:4:\"cart\";a:0:{}}");
INSERT INTO `wpj1_usermeta` VALUES("31", "1", "dismissed_no_shipping_methods_notice", "1");
INSERT INTO `wpj1_usermeta` VALUES("32", "1", "closedpostboxes_product", "a:0:{}");
INSERT INTO `wpj1_usermeta` VALUES("29", "1", "wpj1_media_library_mode", "list");
INSERT INTO `wpj1_usermeta` VALUES("33", "1", "metaboxhidden_product", "a:3:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";i:2;s:11:\"commentsdiv\";}");

/* INSERT TABLE DATA: wpj1_users */
INSERT INTO `wpj1_users` VALUES("1", "admin", "$P$B.T1jnguyJ1AUy9feCC7iKrIG1sdBL0", "admin", "admin@panbilresidence.com", "", "2018-01-23 03:38:12", "", "0", "admin");

/* INSERT TABLE DATA: wpj1_woocommerce_attribute_taxonomies */
INSERT INTO `wpj1_woocommerce_attribute_taxonomies` VALUES("1", "testSlug", "testName", "text", "menu_order", "0");

/* INSERT TABLE DATA: wpj1_woocommerce_sessions */
INSERT INTO `wpj1_woocommerce_sessions` VALUES("2", "1", "a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:717:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"KR\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"KR\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:25:\"admin@panbilresidence.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}", "1520205102");

/* INSERT TABLE DATA: wpj1_wpgmza_maps */
INSERT INTO `wpj1_wpgmza_maps` VALUES("1", "My first map", "100", "400", "1.067331", "104.077544", "1.0673313646197207,104.07754442351347", "13", "0", "1", "1", "1", "0", "", "0", "", "2", "2", "1", "100", "0", "0", "0", "0", "0", "", "\\%", "px", "1", "0", "1", "2", "0", "", "a:13:{s:21:\"store_locator_enabled\";i:2;s:22:\"store_locator_distance\";i:2;s:28:\"store_locator_default_radius\";s:2:\"10\";s:31:\"store_locator_not_found_message\";s:52:\"No results found in this location. Please try again.\";s:20:\"store_locator_bounce\";i:1;s:26:\"store_locator_query_string\";s:14:\"ZIP / Address:\";s:29:\"store_locator_default_address\";s:0:\"\";s:29:\"wpgmza_store_locator_restrict\";s:0:\"\";s:12:\"map_max_zoom\";s:1:\"1\";s:15:\"transport_layer\";i:2;s:17:\"wpgmza_theme_data\";s:929:\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"on\\\"},{\\\"lightness\\\":33}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"color\\\":\\\"#f2e5d4\\\"}]},{\\\"featureType\\\":\\\"poi.park\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"color\\\":\\\"#c5dac6\\\"}]},{\\\"featureType\\\":\\\"poi.park\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"on\\\"},{\\\"lightness\\\":20}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":20}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"color\\\":\\\"#c5c6c6\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"color\\\":\\\"#e4d7c6\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"color\\\":\\\"#fbfaf7\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"on\\\"},{\\\"color\\\":\\\"#acbcc9\\\"}]}]\";s:22:\"wpgmza_theme_selection\";i:4;s:30:\"wpgmza_show_points_of_interest\";i:1;}");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2018-03-27 01:07:05*/
/* DUPLICATOR_MYSQLDUMP_EOF */
